Skip to content

Commit 8aac828

Browse files
committed
chore(*): Add zone check because of tests where zone is patched.
1 parent 007df59 commit 8aac828

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

projects/igniteui-angular/grids/grid/src/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7772,7 +7772,7 @@ export abstract class IgxGridBaseDirective implements GridType,
77727772
}
77737773
};
77747774

7775-
if (this.zone.isStable) {
7775+
if (NgZone.isInAngularZone() && this.zone.isStable) {
77767776
this.cdr.detectChanges();
77777777
callback();
77787778
} else {

0 commit comments

Comments
 (0)