Skip to content

Commit ae4dcd4

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

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
@@ -6136,7 +6136,7 @@ export abstract class IgxGridBaseDirective implements GridType,
61366136
* @hidden @internal
61376137
*/
61386138
public trackColumnChanges(_index, col) {
6139-
return col.field + col._calcWidth;
6139+
return col.field + col._calcWidth.toString();
61406140
}
61416141

61426142
/**

0 commit comments

Comments
 (0)