diff --git a/src/components/DeploymentsTable.tsx b/src/components/DeploymentsTable.tsx index db83862..9855488 100644 --- a/src/components/DeploymentsTable.tsx +++ b/src/components/DeploymentsTable.tsx @@ -223,7 +223,7 @@ export function DeploymentsTable({ deployments, isLoading, onRefresh }: Deployme getRowCanExpand: () => true, initialState: { pagination: { - pageSize: 10, + pageSize: 50, }, }, }); @@ -385,7 +385,7 @@ export function DeploymentsTable({ deployments, isLoading, onRefresh }: Deployme {/* Pagination */} - {filteredDeployments.length > 10 && ( + {filteredDeployments.length > 25 && (
Rows per page: @@ -394,7 +394,7 @@ export function DeploymentsTable({ deployments, isLoading, onRefresh }: Deployme onChange={(e) => table.setPageSize(Number(e.target.value))} className="px-2 py-1 text-sm bg-slate-100 dark:bg-stone-800 border border-slate-200 dark:border-stone-700 rounded text-slate-700 dark:text-stone-300 focus:outline-none" > - {[10, 25, 50].map((size) => ( + {[25, 50, 100].map((size) => (