diff --git a/src/FilterLists.Web.V2/src/components/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/components/allListsTable/AllListsTable.tsx index b22b8955d..36c927aab 100644 --- a/src/FilterLists.Web.V2/src/components/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/components/allListsTable/AllListsTable.tsx @@ -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 }); }