Browse Source

Merge pull request #9102 from ArtemDzhereleiko/AD/bug-fix/time-table/columns-display-title

Timeseries table widget columns display fixed columns name
pull/8767/head
Igor Kulikov 3 years ago
committed by GitHub
parent
commit
090a4fa2a8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.ts

2
ui-ngx/src/app/modules/home/components/widget/lib/timeseries-table-widget.component.ts

@ -466,7 +466,7 @@ export class TimeseriesTableWidgetComponent extends PageComponent implements OnI
} else if (value === 'actions') {
title = 'Actions';
} else {
title = header.dataKey.name;
title = header.dataKey.label;
}
return {
title,

Loading…
Cancel
Save