Commit 8860985a49d95610509b3fd32c17dcd170b600cb
1 parent
84647a07
Make table to 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) { |