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 479653b commit b11324aCopy full SHA for b11324a
1 file changed
src/grid/View.mjs
@@ -658,7 +658,7 @@ class GridView extends Component {
658
firstRow = vdomRoot.cn[0],
659
i = 0,
660
len = firstRow.cn.length,
661
- columnIndex;
+ cell, columnIndex;
662
663
// Columns might get moved via drag&drop, so let's check for the current match
664
for (; i < len; i++) {
@@ -669,7 +669,8 @@ class GridView extends Component {
669
}
670
671
vdomRoot.cn.forEach(row => {
672
- cells.push(row.cn[columnIndex])
+ cell = row.cn[columnIndex];
673
+ cell && cells.push(cell)
674
});
675
676
return cells
0 commit comments