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 ac7aa09 commit a251089Copy full SHA for a251089
src/GuppyDataExplorer/ExplorerTable/index.jsx
@@ -318,7 +318,7 @@ class ExplorerTable extends React.Component {
318
const columnIsEmpty = this.props.rawData.every((colItem) => {
319
const colData = colItem[tempColumnConfig.id];
320
// if normal id it should have data, additional check for empty arrays
321
- if (colData && (typeof colData === 'number' || colData.length > 0)) {
+ if (typeof colData === 'number' || (colData && colData.length > 0)) {
322
return false;
323
}
324
// check if special id with period
0 commit comments