Skip to content

Commit ffd7b45

Browse files
authored
Merge pull request #6318 from IgniteUI/PMiteva/fix-4728-8.2.x
Fix editRow banner positioning when grid rows are less than 2 v.8.2.x
2 parents ace582e + 4095c60 commit ffd7b45

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
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 null;
2058+
return this.outletDirective;
20592059
}
20602060

20612061
/**

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -443,13 +443,6 @@ 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-
453446
/**
454447
* @hidden
455448
*/

0 commit comments

Comments
 (0)