diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx index d3475e174..476ecbfc6 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -50,7 +50,7 @@ export class AllListsTable extends React.Component<{}, State> { } private updatePageSize() { - const pageSize = Math.floor((window.innerHeight - 275.5) / 59); + const pageSize = Math.floor((window.innerHeight - 275.5) / 72); this.setState({ pageSize: pageSize, pageSizeOptions: [5, 10, 20, 500, 2000, pageSize].sort((a, b) => a - b).map(String),