diff --git a/packages/react-bootstrap-table2/src/row/should-updater.js b/packages/react-bootstrap-table2/src/row/should-updater.js index bcef92e..c61ae5e 100644 --- a/packages/react-bootstrap-table2/src/row/should-updater.js +++ b/packages/react-bootstrap-table2/src/row/should-updater.js @@ -27,7 +27,7 @@ export default ExtendBase => return true; } for (let i = 0; i < this.props.columns.length; i += 1) { - if (this.props.columns[i].hidden !== nextProps.columns[i].hidden) { + if (!_.isEqual(this.props.columns[i], nextProps.columns[i])) { return true; } }