diff --git a/src/Table.jsx b/src/Table.jsx index 76209b08a..cf7c72a32 100644 --- a/src/Table.jsx +++ b/src/Table.jsx @@ -96,9 +96,9 @@ const Table = React.createClass({ componentDidMount() { this.resetScrollY(); - this.syncFixedTableRowHeight(); const isAnyColumnsFixed = this.isAnyColumnsFixed(); if (isAnyColumnsFixed) { + this.syncFixedTableRowHeight(); this.resizeEvent = addEventListener( window, 'resize', debounce(this.syncFixedTableRowHeight, 150) );