diff --git a/src/ui/components/table/ManagedTable.js b/src/ui/components/table/ManagedTable.js index 52a3fcd1f..544422935 100644 --- a/src/ui/components/table/ManagedTable.js +++ b/src/ui/components/table/ManagedTable.js @@ -519,20 +519,22 @@ class ManagedTable extends React.Component< }; render() { - const {columns, rows, rowLineHeight} = this.props; + const {columns, rows, rowLineHeight, hideHeader} = this.props; const {columnOrder, columnSizes} = this.state; return ( - + {hideHeader !== true && ( + + )} {this.props.autoHeight ? ( this.props.rows.map((_, index) => this.getRow({index, style: {}}))