aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/edit/ComputedAttributes.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-05-19 09:25:53 +0500
committerAbyss777 <abyss@fox5.ru>2017-05-19 09:25:53 +0500
commit3cd2d2e792d558886e404913780116d99a443d74 (patch)
tree9aec911b9af73dfdcd2db6e8514887a34aaa5eec /web/app/view/edit/ComputedAttributes.js
parent788a499b346724d753798597fb18f8aef17e1588 (diff)
downloadetbsa-traccar-web-3cd2d2e792d558886e404913780116d99a443d74.tar.gz
etbsa-traccar-web-3cd2d2e792d558886e404913780116d99a443d74.tar.bz2
etbsa-traccar-web-3cd2d2e792d558886e404913780116d99a443d74.zip
Position attribute name rendering optimization
Diffstat (limited to 'web/app/view/edit/ComputedAttributes.js')
-rw-r--r--web/app/view/edit/ComputedAttributes.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/web/app/view/edit/ComputedAttributes.js b/web/app/view/edit/ComputedAttributes.js
index 741a104..b4699e8 100644
--- a/web/app/view/edit/ComputedAttributes.js
+++ b/web/app/view/edit/ComputedAttributes.js
@@ -48,12 +48,7 @@ Ext.define('Traccar.view.edit.ComputedAttributes', {
text: Strings.sharedAttribute,
dataIndex: 'attribute',
renderer: function (value) {
- var attribute = Ext.getStore('PositionAttributes').getById(value);
- if (attribute) {
- return attribute.get('name');
- } else {
- return value;
- }
+ return Ext.getStore('PositionAttributes').getAttributeName(value);
}
}, {
text: Strings.sharedExpression,