edit translation key

This commit is contained in:
Maksym Tsymbarov 2025-09-15 15:06:06 +03:00
parent 9935087812
commit 41d90b8e1b
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@
<table mat-table [dataSource]="source.timeseriesDatasource" [trackBy]="trackByRowTimestamp"
matSort [matSortActive]="source.pageLink.sortOrder.property" [matSortDirection]="source.pageLink.sortDirection()" matSortDisableClear>
<ng-container *ngIf="showTimestamp" [matColumnDef]="'0'">
<mat-header-cell *matHeaderCellDef mat-sort-header>{{ 'audit-log.timestamp' | translate }}</mat-header-cell>
<mat-header-cell *matHeaderCellDef mat-sort-header>{{ 'widgets.table.display-timestamp' | translate }}</mat-header-cell>
<mat-cell *matCellDef="let row; let rowIndex = index"
[innerHTML]="cellContent(source, null, 0, row, row[0], rowIndex) | async"
[style]="cellStyle(source, null, 0, row, row[0], rowIndex) | async">

View File

@ -513,7 +513,7 @@ export class TimeseriesTableWidgetComponent extends PageComponent implements OnI
let title = '';
const header = this.sources[index].header.find(column => column.index.toString() === value);
if (value === '0') {
title = this.translate.instant('audit-log.timestamp');
title = this.translate.instant('widgets.table.display-timestamp');
} else if (value === 'actions') {
title = 'Actions';
} else {