Skip to content

Commit

Permalink
Merge pull request layer5io#543 from sudhanshutech/fix/pagination
Browse files Browse the repository at this point in the history
Fix standard pagination
  • Loading branch information
nebula-aac authored Mar 8, 2024
2 parents 29c09fc + 6aa3656 commit 5433335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom/ResponsiveDataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ResponsiveDataTable = ({
tableCols,
updateCols,
columnVisibility,
rowsPerPageOptions = [20, 50, 100], // Default and standard page size options
rowsPerPageOptions = [10, 25, 50, 100], // Default and standard page size options
...props
}: ResponsiveDataTableProps): JSX.Element => {
const formatDate = (date: Date): string => {
Expand Down

0 comments on commit 5433335

Please sign in to comment.