diff options
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/view/ReportController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/ReportController.js b/web/app/view/ReportController.js index 46543ba..8f8cf74 100644 --- a/web/app/view/ReportController.js +++ b/web/app/view/ReportController.js @@ -112,8 +112,8 @@ Ext.define('Traccar.view.ReportController', { deviceId: this.deviceId, groupId: this.groupId, type: this.eventType, - from: from.toISOString(), - to: to.toISOString() + from: Ext.Date.format(from, 'c'), + to: Ext.Date.format(to, 'c') }); } } |