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 b1afeac commit a970b68Copy full SHA for a970b68
projects/igniteui-angular/src/lib/grids/grid/grid.pipes.ts
@@ -114,7 +114,7 @@ export class IgxGridUnmergeActivePipe implements PipeTransform {
114
const rootsToUpdate = [];
115
activeRowIndexes.forEach(index => {
116
const target = collection[index];
117
- if (target) {
+ if (target && target.cellMergeMeta) {
118
colsToMerge.forEach(col => {
119
const colMeta = target.cellMergeMeta.get(col.field);
120
const root = colMeta.root || (colMeta.rowSpan > 1 ? target : null);
0 commit comments