increase number of rows per page

closes #853
This commit is contained in:
Collin M. Barrett 2019-07-28 17:04:39 -05:00
parent 7b7385f1e7
commit e2290c120a

View file

@ -61,7 +61,7 @@ export class Home extends React.Component<IProps, IState> {
updatePageSize() {
this.setState({
pageSize: Math.max(Math.floor((window.innerHeight - 400) / 52), 5)
pageSize: Math.max(Math.floor((window.innerHeight - 340) / 55), 5)
});
};