Skip to content

Commit a8968c0

Browse files
authored
Merge pull request #15889 from IgniteUI/mkirova/fix-15783-master
fix(igxGrid): Make sure track changes resolves to string and tracks s…
2 parents cd00bb3 + ee26173 commit a8968c0

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
@@ -6169,7 +6169,7 @@ export abstract class IgxGridBaseDirective implements GridType,
61696169
* @hidden @internal
61706170
*/
61716171
public trackColumnChanges(_index, col) {
6172-
return col.field + col._calcWidth;
6172+
return col.field + col._calcWidth.toString();
61736173
}
61746174

61756175
/**

0 commit comments

Comments
 (0)