Skip to content

Commit b58f52a

Browse files
authored
Merge pull request #15855 from IgniteUI/mkirova/fix-15783
fix(igxGrid): Make sure track changes resolves to string and tracks s…
2 parents ed7f4f3 + ae4dcd4 commit b58f52a

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)