Skip to content

Commit aefbe6a

Browse files
authored
Merge branch '8.2.x' into dmdimitrov/issue6257-8.2.x
2 parents 3a92c24 + 1b79198 commit aefbe6a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2055,7 +2055,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
20552055
* @hidden
20562056
*/
20572057
public get parentRowOutletDirective() {
2058-
return this.outletDirective;
2058+
return null;
20592059
}
20602060

20612061
/**

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,13 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseCompone
443443
return this.rootGrid._outletDirective;
444444
}
445445

446+
/**
447+
* @hidden
448+
*/
449+
public get parentRowOutletDirective() {
450+
return this === this.rootGrid ? null : this.rootGrid.rowEditingOutletDirective;
451+
}
452+
446453
/**
447454
* @hidden
448455
*/

0 commit comments

Comments
 (0)