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