We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018bf76 commit 624764cCopy full SHA for 624764c
src/TableBody.js
@@ -200,7 +200,8 @@ 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 ? 1 : 0)
204
+ + (this.props.expandColumnOptions.expandColumnVisible ? 1 : 0);
205
tableRows = [
206
<TableRow key='##table-empty##'>
207
<td data-toggle='collapse'
0 commit comments