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.
1 parent 02701c1 commit f2e2b49Copy full SHA for f2e2b49
projects/igniteui-angular/src/lib/grids/row.directive.ts
@@ -106,8 +106,7 @@ export class IgxRowDirective<T extends IgxGridBaseDirective & GridType> implemen
106
get rowHeight() {
107
let height = this.grid.rowHeight || 32;
108
if (this.grid.hasColumnLayouts) {
109
- const rs = this.columns.map(x => x.gridRowSpan);
110
- const maxRowSpan = Math.max(... rs);
+ const maxRowSpan = this.grid.multiRowLayoutRowSize;
111
height = height * maxRowSpan;
112
}
113
return this.addRow ? height : null;
0 commit comments