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 c868b38 commit 867f112Copy full SHA for 867f112
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -222,11 +222,11 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
222
public loadingGridTemplate: TemplateRef<any>;
223
224
/**
225
- * Get/Set summaryRow height
+ * Get/Set IgxSummaryRow height
226
*/
227
@Input()
228
public set summaryRowHeight(value: number) {
229
- this._summaryRowHeight = value;
+ this._summaryRowHeight = value | 0;
230
this.summaryService.summaryHeight = value;
231
if (!this._init) {
232
this.reflow();
0 commit comments