aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/CustomNumberField.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-09-07 17:03:58 +0500
committerAbyss777 <abyss@fox5.ru>2017-09-07 17:03:58 +0500
commit591466507225d41c3ba3ae677aee5423c05e1aeb (patch)
tree5b884fb50dac2d94b0561f4cf4570a59fea710dc /web/app/view/CustomNumberField.js
parent911863f770557f474138f2b113054d5bb294daf8 (diff)
downloadetbsa-traccar-web-591466507225d41c3ba3ae677aee5423c05e1aeb.tar.gz
etbsa-traccar-web-591466507225d41c3ba3ae677aee5423c05e1aeb.tar.bz2
etbsa-traccar-web-591466507225d41c3ba3ae677aee5423c05e1aeb.zip
Fix units migration
Diffstat (limited to 'web/app/view/CustomNumberField.js')
-rw-r--r--web/app/view/CustomNumberField.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/CustomNumberField.js b/web/app/view/CustomNumberField.js
index e8fe5f7..807bad4 100644
--- a/web/app/view/CustomNumberField.js
+++ b/web/app/view/CustomNumberField.js
@@ -33,7 +33,7 @@ Ext.define('Traccar.view.CustomNumberField', {
return Ext.getStore('SpeedUnits');
};
config.units.getValue = function () {
- return Traccar.app.getPreference('speedUnit', 'kn');
+ return Traccar.app.getAttributePreference('speedUnit', 'kn');
};
unitName = Ext.getStore('SpeedUnits').findRecord('key', config.units.getValue()).get('name');
break;
@@ -43,7 +43,7 @@ Ext.define('Traccar.view.CustomNumberField', {
return Ext.getStore('DistanceUnits');
};
config.units.getValue = function () {
- return Traccar.app.getPreference('distanceUnit', 'km');
+ return Traccar.app.getAttributePreference('distanceUnit', 'km');
};
unitName = Ext.getStore('DistanceUnits').findRecord('key', config.units.getValue()).get('name');
break;