diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index 635d228f9..9bc5fd686 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -63,7 +63,7 @@ export class Home extends React.Component, IHomeState> { updatePageSize() { this.setState({ - pageSize: Math.floor((window.innerHeight - 361) / 52) + pageSize: Math.max(Math.floor((window.innerHeight - 361) / 52), 5) }); }