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 57b4c76 commit 4525877Copy full SHA for 4525877
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -4850,9 +4850,9 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
4850
}
4851
4852
if (minWidth > parseFloat(width)) {
4853
- width = column.minWidth;
+ width = String(column.minWidth);
4854
} else if (maxWidth < parseFloat(width)) {
4855
- width = column.maxWidth;
+ width = String(column.maxWidth);
4856
4857
4858
// if no px or % are defined in maxWidth/minWidth consider it px
0 commit comments