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.
2 parents 9de8d34 + 067dcd2 commit 43f99cfCopy full SHA for 43f99cf
projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.component.ts
@@ -332,7 +332,8 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseCompone
332
this._transactions = this.parentIsland ? this.parentIsland.transactions : this._transactions;
333
super.ngOnInit();
334
this.overlayService.onOpened.pipe(takeUntil(this.destroy$)).subscribe((event) => {
335
- if (this.overlayService.getOverlayById(event.id).settings.outlet === this.outletDirective) {
+ if (this.overlayService.getOverlayById(event.id).settings.outlet === this.outletDirective &&
336
+ this._overlayIDs.indexOf(event.id) < 0) {
337
this._overlayIDs.push(event.id);
338
}
339
});
0 commit comments