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.
1 parent 298e971 commit 62ceb31Copy full SHA for 62ceb31
src/TableBody.js
@@ -200,7 +200,7 @@ class TableBody extends Component {
200
201
if (tableRows.length === 0 && !this.props.withoutNoDataText) {
202
const colSpan = this.props.columns.filter(c => !c.hidden).length
203
- + (isSelectRowDefined ? 1 : 0)
+ + ((isSelectRowDefined && !this.props.selectRow.hideSelectColumn) ? 1 : 0)
204
+ (this.props.expandColumnOptions.expandColumnVisible ? 1 : 0);
205
tableRows = [
206
<TableRow key='##table-empty##'>
0 commit comments