Skip to content

Commit 867f112

Browse files
author
mmart1n
committed
fix(grid): summaryRowHeight handle falsy values
1 parent c868b38 commit 867f112

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,11 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
222222
public loadingGridTemplate: TemplateRef<any>;
223223

224224
/**
225-
* Get/Set summaryRow height
225+
* Get/Set IgxSummaryRow height
226226
*/
227227
@Input()
228228
public set summaryRowHeight(value: number) {
229-
this._summaryRowHeight = value;
229+
this._summaryRowHeight = value | 0;
230230
this.summaryService.summaryHeight = value;
231231
if (!this._init) {
232232
this.reflow();

0 commit comments

Comments
 (0)