mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
pre-sort page size options
This commit is contained in:
parent
0d3e59fd81
commit
6d430168db
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
const pageSize = Math.floor((window.innerHeight - 211.5) / 56);
|
||||
this.setState({
|
||||
pageSize: pageSize,
|
||||
pageSizeOptions: [200, 2000, pageSize].sort((a, b) => a - b).map(String),
|
||||
pageSizeOptions: [pageSize, 200, 2000].sort((a, b) => a - b).map(String),
|
||||
isNarrowWindow: window.innerWidth < 576 ? true : false
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue