Skip to content

Commit

Permalink
Merge pull request #1865 from deepfence/1860-add-more-page-options
Browse files Browse the repository at this point in the history
Add more page size options for table pagination
  • Loading branch information
manV authored Jan 9, 2024
2 parents a31e460 + 00e79d9 commit 9fe0b92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function useTableContext<TData extends RowData>() {
return useContext(createTableContext<TData>());
}

const PAGE_RESIZE_OPTIONS = [10, 25, 50];
const PAGE_RESIZE_OPTIONS = [10, 25, 50, 100, 250];

const CustomTable = <TData extends RowData>(
props: TableProps<TData>,
Expand Down

0 comments on commit 9fe0b92

Please sign in to comment.