diff --git a/projects/novo-elements/src/elements/data-table/data-table.component.ts b/projects/novo-elements/src/elements/data-table/data-table.component.ts index 57f57e123..3c2939cf3 100644 --- a/projects/novo-elements/src/elements/data-table/data-table.component.ts +++ b/projects/novo-elements/src/elements/data-table/data-table.component.ts @@ -614,7 +614,7 @@ export class NovoDataTable implements AfterContentInit, OnDestroy { } public trackColumnsBy(index: number, item: IDataTableColumn) { - return item.id; + return { id: item.id, label: item.label }; } public isDisabled(check: any, row: T): boolean {