From 5a0a243b6cf5d94318bc05db50470288619c72f5 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 7 Aug 2019 13:07:31 -0500 Subject: [PATCH] mark method as private --- .../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 afa17c83f..1e0b19860 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -37,7 +37,7 @@ export class AllListsTable extends React.Component<{}, State> { window.removeEventListener('resize', this.updatePageSize); } - updatePageSize() { + private updatePageSize() { const pageSize = Math.floor((window.innerHeight - 275.5) / 59); this.setState({ pageSize: pageSize,