aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/edit/Attributes.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/edit/Attributes.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/edit/Attributes.js')
-rw-r--r--web/app/view/edit/Attributes.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/edit/Attributes.js b/web/app/view/edit/Attributes.js
index a76223b..2dd06be 100644
--- a/web/app/view/edit/Attributes.js
+++ b/web/app/view/edit/Attributes.js
@@ -62,9 +62,9 @@ Ext.define('Traccar.view.edit.Attributes', {
attribute = Ext.getStore(this.attributesStore).getById(record.get('name'));
}
if (attribute && attribute.get('dataType') === 'speed') {
- return Ext.getStore('SpeedUnits').formatValue(value, Traccar.app.getPreference('speedUnit', 'kn'), true);
+ return Ext.getStore('SpeedUnits').formatValue(value, Traccar.app.getAttributePreference('speedUnit', 'kn'), true);
} else if (attribute && attribute.get('dataType') === 'distance') {
- return Ext.getStore('DistanceUnits').formatValue(value, Traccar.app.getPreference('distanceUnit', 'km'), true);
+ return Ext.getStore('DistanceUnits').formatValue(value, Traccar.app.getAttributePreference('distanceUnit', 'km'), true);
} else {
return value;
}