fix: update Badge component in LicenseQueuePage for consistent styling

feat: add siblings and boundaries props to pagination in AdvancedTable
This commit is contained in:
estifanos
2026-08-11 11:23:38 +00:00
parent d7ecc86177
commit 0fd78c7757
2 changed files with 3 additions and 1 deletions

View File

@@ -558,7 +558,7 @@ export function LicenseQueuePage() {
value={savedView.id}
rightSection={
counts?.[savedView.countKey] ? (
<Badge size="xs" variant="light" circle>
<Badge size="xs" variant="light">
{counts[savedView.countKey]}
</Badge>
) : undefined

View File

@@ -220,6 +220,8 @@ export function AdvancedTable<T extends { id?: string | number }>({
value={pageIndex + 1}
onChange={(page) => onPageChange(page - 1)}
size="sm"
siblings={0}
boundaries={1}
/>
</Group>
)}