Skip to content

Commit 4525877

Browse files
committed
chore(test): Fix failing tests
1 parent 57b4c76 commit 4525877

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
@@ -4850,9 +4850,9 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
48504850
}
48514851

48524852
if (minWidth > parseFloat(width)) {
4853-
width = column.minWidth;
4853+
width = String(column.minWidth);
48544854
} else if (maxWidth < parseFloat(width)) {
4855-
width = column.maxWidth;
4855+
width = String(column.maxWidth);
48564856
}
48574857

48584858
// if no px or % are defined in maxWidth/minWidth consider it px

0 commit comments

Comments
 (0)