diff options
Diffstat (limited to 'web/app/store/DistanceUnits.js')
-rw-r--r-- | web/app/store/DistanceUnits.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/store/DistanceUnits.js b/web/app/store/DistanceUnits.js index 57d15fc8..0dcddbea 100644 --- a/web/app/store/DistanceUnits.js +++ b/web/app/store/DistanceUnits.js @@ -1,5 +1,5 @@ /* - * Copyright 2015 Anton Tananaev (anton@traccar.org) + * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -48,6 +48,6 @@ Ext.define('Traccar.store.DistanceUnits', { unit = 'km'; } model = this.findRecord('key', unit); - return (value * model.get('factor')).toFixed(2) + ' ' + model.get('name'); + return this.convertValue(value, unit).toFixed(2) + ' ' + model.get('name'); } }); |