We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42ebc53 + fcc7c81 commit 6855c9aCopy full SHA for 6855c9a
src/TableHeader.js
@@ -109,7 +109,9 @@ class TableHeader extends Component {
109
}
110
111
renderSelectRowHeader(rowCount, rowKey) {
112
- if (this.props.customComponent) {
+ if (this.props.hideSelectColumn) {
113
+ return null;
114
+ } else if (this.props.customComponent) {
115
const CustomComponent = this.props.customComponent;
116
return (
117
<SelectRowHeaderColumn key={ rowKey } rowCount={ rowCount }>
0 commit comments