aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/edit
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-06-06 13:52:35 +0500
committerAbyss777 <abyss@fox5.ru>2017-06-06 13:55:15 +0500
commit4f61e2a9fd0f9632e05d5bac0648c2548b9cef39 (patch)
tree40c27e191c4f921666777fae79349b4fb792db0c /web/app/view/edit
parentf538963be5fcee2280b22050c8a51475c3a984f8 (diff)
downloadetbsa-traccar-web-4f61e2a9fd0f9632e05d5bac0648c2548b9cef39.tar.gz
etbsa-traccar-web-4f61e2a9fd0f9632e05d5bac0648c2548b9cef39.tar.bz2
etbsa-traccar-web-4f61e2a9fd0f9632e05d5bac0648c2548b9cef39.zip
Optimize formatValue functions
Diffstat (limited to 'web/app/view/edit')
-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 0d16e1e..66d8bb1 100644
--- a/web/app/view/edit/Attributes.js
+++ b/web/app/view/edit/Attributes.js
@@ -58,9 +58,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').convertAndFormat(value, Traccar.app.getPreference('speedUnit', 'kn'));
+ return Ext.getStore('SpeedUnits').formatValue(value, Traccar.app.getPreference('speedUnit', 'kn'), true);
} else if (attribute && attribute.get('dataType') === 'distance') {
- return Ext.getStore('DistanceUnits').convertAndFormat(value, Traccar.app.getPreference('distanceUnit', 'km'));
+ return Ext.getStore('DistanceUnits').formatValue(value, Traccar.app.getPreference('distanceUnit', 'km'), true);
} else {
return value;
}