tweak auto-pageSize math

This commit is contained in:
Collin M. Barrett 2019-08-07 17:37:34 -05:00
parent ee5ac67110
commit 149524e12f

View file

@ -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),