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 4525877 commit db9fcd7Copy full SHA for db9fcd7
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -4843,8 +4843,8 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
4843
if (width && typeof width !== 'string') {
4844
width = String(width);
4845
}
4846
- const minWidth = this.width.indexOf('%') === -1 ? column.minWidthPx : column.minWidthPercent;
4847
- const maxWidth = this.width.indexOf('%') === -1 ? column.maxWidthPx : column.maxWidthPercent;
+ const minWidth = width.indexOf('%') === -1 ? column.minWidthPx : column.minWidthPercent;
+ const maxWidth = width.indexOf('%') === -1 ? column.maxWidthPx : column.maxWidthPercent;
4848
if (column.hidden) {
4849
return width;
4850
0 commit comments