Skip to content

Commit ee26173

Browse files
MKirovaMKirova
authored andcommitted
fix(igxGrid): Make sure track changes resolves to string and tracks size change.
1 parent bb28024 commit ee26173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6137,7 +6137,7 @@ export abstract class IgxGridBaseDirective implements GridType,
61376137
* @hidden @internal
61386138
*/
61396139
public trackColumnChanges(_index, col) {
6140-
return col.field + col._calcWidth;
6140+
return col.field + col._calcWidth.toString();
61416141
}
61426142

61436143
/**

0 commit comments

Comments
 (0)