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 3f8d1c8 commit 37375e5Copy full SHA for 37375e5
projects/igniteui-angular/grids/grid/src/grid.pipes.ts
@@ -104,7 +104,7 @@ export class IgxGridUnmergeActivePipe implements PipeTransform {
104
const rootsToUpdate = [];
105
activeRowIndexes.forEach(index => {
106
const target = collection[index];
107
- if (target) {
+ if (target && target.cellMergeMeta) {
108
colsToMerge.forEach(col => {
109
const colMeta = target.cellMergeMeta.get(col.field);
110
const root = colMeta.root || (colMeta.rowSpan > 1 ? target : null);
0 commit comments