Commit 095dbc639044f7d8c9cb7a38e51f45e5c1e40826
Committed by
GitHub
Merge pull request #4038 from ChantsovaEkaterina/bug/timeseries-table-show-ms
Timeseries table: show correct milliseconds value
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -210,7 +210,7 @@ export class TimeseriesTableWidgetComponent extends PageComponent implements OnI | @@ -210,7 +210,7 @@ export class TimeseriesTableWidgetComponent extends PageComponent implements OnI | ||
210 | this.displayPagination = isDefined(this.settings.displayPagination) ? this.settings.displayPagination : true; | 210 | this.displayPagination = isDefined(this.settings.displayPagination) ? this.settings.displayPagination : true; |
211 | this.hideEmptyLines = isDefined(this.settings.hideEmptyLines) ? this.settings.hideEmptyLines : false; | 211 | this.hideEmptyLines = isDefined(this.settings.hideEmptyLines) ? this.settings.hideEmptyLines : false; |
212 | this.showTimestamp = this.settings.showTimestamp !== false; | 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 | const pageSize = this.settings.defaultPageSize; | 215 | const pageSize = this.settings.defaultPageSize; |
216 | if (isDefined(pageSize) && isNumber(pageSize) && pageSize > 0) { | 216 | if (isDefined(pageSize) && isNumber(pageSize) && pageSize > 0) { |