Skip to content

Commit

Permalink
fix: 1676 increase default number of records (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgaseta authored Nov 19, 2024
1 parent fe82435 commit e4ac30a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/SeedlotTable/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const TableText = {
};

export const PageSizesConfig = [
10, 20, 30, 40, 50
50, 100, 150, 200, 250
];

export const ExclusiveAdminRows: Array<string> = [
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/Seedlot/MySeedlots/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const MySeedlots = () => {
isSortable
showSearch
showPagination
defaultPageSize={20}
defaultPageSize={50}
/>
</Row>
</FlexGrid>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/Seedlot/ReviewSeedlots/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const ReviewSeedlots = () => {
isSortable
showSearch
showPagination
defaultPageSize={20}
defaultPageSize={50}
/>
</Row>
</div>
Expand Down

0 comments on commit e4ac30a

Please sign in to comment.