diff options
author | Abyss777 <abyss@fox5.ru> | 2017-05-19 09:25:53 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-05-19 09:25:53 +0500 |
commit | 3cd2d2e792d558886e404913780116d99a443d74 (patch) | |
tree | 9aec911b9af73dfdcd2db6e8514887a34aaa5eec /web/app/view/edit/ComputedAttributes.js | |
parent | 788a499b346724d753798597fb18f8aef17e1588 (diff) | |
download | trackermap-web-3cd2d2e792d558886e404913780116d99a443d74.tar.gz trackermap-web-3cd2d2e792d558886e404913780116d99a443d74.tar.bz2 trackermap-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.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/web/app/view/edit/ComputedAttributes.js b/web/app/view/edit/ComputedAttributes.js index 741a1048..b4699e84 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, |