Compare commits

...

2 Commits

Author SHA1 Message Date
Eduard Gert
d498e4cc25 Fix dns records pagination (#566)
Some checks failed
build and push / build_n_push (push) Has been cancelled
2026-02-20 21:42:26 +01:00
Eduard Gert
130dc0c32c Fix group unused filter (#565)
Some checks failed
build and push / build_n_push (push) Has been cancelled
2026-02-19 10:32:14 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -66,6 +66,7 @@ export default function DNSRecordsTable({ zone }: Props) {
className={"bg-nb-gray-960 py-2"}
inset={true}
text={"DNS Records"}
initialPageSize={zone?.records?.length}
manualPagination={true}
sorting={sorting}
columnVisibility={{}}

View File

@@ -240,7 +240,7 @@ export const GroupsTableColumns: ColumnDef<GroupUsage>[] = [
row.setup_keys_count > 0 ||
row.users_count > 0 ||
row.resources_count > 0 ||
row.zones_count
row.zones_count > 0
);
},
},