From a3724cdf570e8d63d52a77ae5838015c5c490d39 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 29 Sep 2018 09:03:09 -0500 Subject: [PATCH] tweak table height --- src/FilterLists.Web/ClientApp/modules/home/Home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/ClientApp/modules/home/Home.tsx b/src/FilterLists.Web/ClientApp/modules/home/Home.tsx index 165f7965d..f7b9f7a95 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/Home.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/Home.tsx @@ -52,7 +52,7 @@ export class Home extends React.Component { updatePageSize() { this.setState({ - pageSize: Math.max(Math.floor((window.innerHeight - 386) / 52), 5) + pageSize: Math.max(Math.floor((window.innerHeight - 400) / 52), 5) }); };