Commit 095dbc639044f7d8c9cb7a38e51f45e5c1e40826

Authored by Igor Kulikov
Committed by GitHub
2 parents 646d11e9 8860985a

Merge pull request #4038 from ChantsovaEkaterina/bug/timeseries-table-show-ms

Timeseries table: show correct milliseconds value
... ... @@ -210,7 +210,7 @@ export class TimeseriesTableWidgetComponent extends PageComponent implements OnI
210 210 this.displayPagination = isDefined(this.settings.displayPagination) ? this.settings.displayPagination : true;
211 211 this.hideEmptyLines = isDefined(this.settings.hideEmptyLines) ? this.settings.hideEmptyLines : false;
212 212 this.showTimestamp = this.settings.showTimestamp !== false;
213   - this.dateFormatFilter = (this.settings.showMilliseconds !== true) ? 'yyyy-MM-dd HH:mm:ss' : 'yyyy-MM-dd HH:mm:ss.sss';
  213 + this.dateFormatFilter = (this.settings.showMilliseconds !== true) ? 'yyyy-MM-dd HH:mm:ss' : 'yyyy-MM-dd HH:mm:ss.SSS';
214 214
215 215 const pageSize = this.settings.defaultPageSize;
216 216 if (isDefined(pageSize) && isNumber(pageSize) && pageSize > 0) {
... ...