diff options
Diffstat (limited to 'web/app/store/SpeedUnits.js')
-rw-r--r-- | web/app/store/SpeedUnits.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/web/app/store/SpeedUnits.js b/web/app/store/SpeedUnits.js index 934d03717..15c52625f 100644 --- a/web/app/store/SpeedUnits.js +++ b/web/app/store/SpeedUnits.js @@ -25,11 +25,9 @@ Ext.define('Traccar.store.SpeedUnits', { convert: function(value, unit) { switch (unit) { case 'kmh': - value = value * 1.852; - return Math.round(value * 10) / 10; + return Math.round(value * 1.852 * 10) / 10; case 'mph': - value = value * 1.15078; - return Math.round(value * 10) / 10; + return Math.round(value * 1.15078 * 10) / 10; } return value; }, |