Commit 8860985a49d95610509b3fd32c17dcd170b600cb

Authored by Chantsova Ekaterina
1 parent 84647a07

Make table to 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) {
... ...