From 149524e12f0211504a764434415e4ddd5079d5fc Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 7 Aug 2019 17:37:34 -0500 Subject: [PATCH] tweak auto-pageSize math --- .../src/modules/allListsTable/AllListsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),