Skip to content

Commit

Permalink
fix(grid): Remove redundant check (#3020)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borislav Kulov committed Nov 21, 2018
1 parent 6cfa87b commit 2bf81c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ export class IgxColumnGroupComponent extends IgxColumnComponent implements After
return acc;
}
if (val.width && typeof val.width === 'string' && val.width.indexOf('%') !== -1) {
if (typeof val.width === 'string' && val.width.indexOf('%') !== -1) {
isChildrenWidthInPercent = true;
}
Expand Down

0 comments on commit 2bf81c3

Please sign in to comment.