Skip to content
Snippets Groups Projects
Commit 943459d2 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

remove stray console.log

parent d5905365
No related branches found
No related tags found
No related merge requests found
......@@ -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 });
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment