diff options
author | Alexander Menk <menk@mestrona.net> | 2016-12-20 12:47:19 +0100 |
---|---|---|
committer | Alexander Menk <menk@mestrona.net> | 2016-12-20 12:47:19 +0100 |
commit | 34fdca37d4a5a2d058345c60af028acad4edf8d8 (patch) | |
tree | a4ce6469bbeb33aa289d833badd97131e7b0d132 /web/app/view/CommandDialogController.js | |
parent | 07716fdd0bc9fb5329f2a6cd80acb6106b9f4e7c (diff) | |
download | trackermap-web-34fdca37d4a5a2d058345c60af028acad4edf8d8.tar.gz trackermap-web-34fdca37d4a5a2d058345c60af028acad4edf8d8.tar.bz2 trackermap-web-34fdca37d4a5a2d058345c60af028acad4edf8d8.zip |
#2702 SetTimezone: Conversion to Seconds, Formating improvement (+ sign)
Diffstat (limited to 'web/app/view/CommandDialogController.js')
-rw-r--r-- | web/app/view/CommandDialogController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/CommandDialogController.js b/web/app/view/CommandDialogController.js index 9d7bb2ba..e6823d3d 100644 --- a/web/app/view/CommandDialogController.js +++ b/web/app/view/CommandDialogController.js @@ -86,7 +86,7 @@ Ext.define('Traccar.view.CommandDialogController', { attributes = this.lookupReference('paramSetTimezone'); value = attributes.down('numberfield[name="timezone"]').getValue(); record.set('attributes', { - timezone: value + timezone: value * 60 }); } |