Skip to content

Commit 0dfb67f

Browse files
committed
chore(*): Fixing groupingExpansionState setter
1 parent 5d7b056 commit 0dfb67f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,9 @@ export class IgxGridComponent extends IgxGridBaseComponent implements IGridDataB
333333
set groupingExpansionState(value) {
334334
this._groupingExpandState = cloneArray(value);
335335
this.groupingExpansionStateChange.emit(this._groupingExpandState);
336-
this.notifyChanges();
336+
if (this.gridAPI.grid) {
337+
this.cdr.detectChanges();
338+
}
337339
}
338340

339341
/**

0 commit comments

Comments
 (0)