tweak table height

This commit is contained in:
Collin M. Barrett 2018-09-29 09:03:09 -05:00
parent 74143345be
commit a3724cdf57

View file

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