diff --git a/frontend/src/visualizations/TableSimple.jsx b/frontend/src/visualizations/TableSimple.jsx index 179be379f7b0a581926414d2f24251462c969591..ce4bf08aa619d8db2cc8c25ee199800ea09ba943 100644 --- a/frontend/src/visualizations/TableSimple.jsx +++ b/frontend/src/visualizations/TableSimple.jsx @@ -46,7 +46,6 @@ export default class TableSimple extends Component { let footerHeight = this.refs.footer ? ReactDOM.findDOMNode(this.refs.footer).getBoundingClientRect().height : 0; let rowHeight = ReactDOM.findDOMNode(this.refs.firstRow).getBoundingClientRect().height + 1; let pageSize = Math.max(1, Math.floor((this.props.height - headerHeight - footerHeight) / rowHeight)); - console.log(this.props.height, headerHeight, footerHeight, rowHeight) if (this.state.pageSize !== pageSize) { this.setState({ pageSize }); }