diff options
Diffstat (limited to 'web/app/view/report/ReportController.js')
-rw-r--r-- | web/app/view/report/ReportController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/report/ReportController.js b/web/app/view/report/ReportController.js index ffc75dc1c..64c89867d 100644 --- a/web/app/view/report/ReportController.js +++ b/web/app/view/report/ReportController.js @@ -49,8 +49,8 @@ Ext.define('Traccar.view.report.ReportController', { store.load({ params:{ deviceId: deviceId, - from: from, - to: to + from: from.toISOString(), + to: to.toISOString() }, scope: this, callback: function() { |