From e2290c120a79f2e883328420e675445b566f73d1 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 28 Jul 2019 17:04:39 -0500 Subject: [PATCH] increase number of rows per page closes #853 --- src/FilterLists.Web/src/modules/home/Home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/src/modules/home/Home.tsx b/src/FilterLists.Web/src/modules/home/Home.tsx index 475ca6d85..8bfeb94fa 100644 --- a/src/FilterLists.Web/src/modules/home/Home.tsx +++ b/src/FilterLists.Web/src/modules/home/Home.tsx @@ -61,7 +61,7 @@ export class Home extends React.Component { updatePageSize() { this.setState({ - pageSize: Math.max(Math.floor((window.innerHeight - 400) / 52), 5) + pageSize: Math.max(Math.floor((window.innerHeight - 340) / 55), 5) }); };