Skip to content

Commit b93cec0

Browse files
author
mmart1n
committed
fix(hgrid): update row-island summary row height when changing display density
1 parent 7cde94f commit b93cec0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,10 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
595595

596596
if (this.parent) {
597597
this._displayDensity = this.rootGrid.displayDensity;
598+
this.summaryService.summaryHeight = 0;
598599
this.rootGrid.onDensityChanged.pipe(takeUntil(this.destroy$)).subscribe(() => {
599600
this._displayDensity = this.rootGrid.displayDensity;
601+
this.summaryService.summaryHeight = 0;
600602
this.notifyChanges(true);
601603
this.cdr.markForCheck();
602604
});

0 commit comments

Comments
 (0)