Skip to content

Commit

Permalink
Add page size option '1000'
Browse files Browse the repository at this point in the history
  • Loading branch information
marwyg committed Jun 5, 2024
1 parent 98ee67b commit dc48d92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/shared/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const Table = ({
reverse,
}) => {
// Size options for pagination
const sizeOptions = [10, 20, 50, 100];
const sizeOptions = [10, 20, 50, 100, 1000];

const lengthDivStyle = {
position: "absolute" as const,
Expand Down
2 changes: 1 addition & 1 deletion src/styles/components/_dropdowns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
}

&.small {
width: 65px;
width: 75px;
height: 28px;
line-height: 26px;
display: inline-block;
Expand Down

0 comments on commit dc48d92

Please sign in to comment.