Skip to content

Commit b20a5b9

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Only consider user-set min as constraint.
1 parent d009c59 commit b20a5b9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

projects/igniteui-angular/grids/core/src/columns/column.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2679,8 +2679,7 @@ export class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnTy
26792679
} else if (this.minWidth && newSize <= this.userSetMinWidthPx) {
26802680
this.widthConstrained = true;
26812681
return this.userSetMinWidthPx;
2682-
} else if (!this.minWidth && !this.widthSetByUser && newSize <= this.grid.minColumnWidth){
2683-
this.widthConstrained = true;
2682+
} else if (!this.minWidth && !this.widthSetByUser && newSize <= this.grid.minColumnWidth) {
26842683
return this.grid.minColumnWidth;
26852684
} else {
26862685
this.widthConstrained = false;

0 commit comments

Comments
 (0)