aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/AttributesController.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-07-18 23:26:48 +1200
committerGitHub <noreply@github.com>2016-07-18 23:26:48 +1200
commit464711d63dafb44e89f3d4112f13250f268c11cd (patch)
treee4342fb8dd0f743fad8060ca1029504410ce4c21 /web/app/view/AttributesController.js
parentd3e063cf9de8a45bed4dfe87b73aadfd8d2edeab (diff)
parentbbfe8e8c328a660b8bdcdf089a8cd798cbbc5f2d (diff)
downloadtrackermap-server-464711d63dafb44e89f3d4112f13250f268c11cd.tar.gz
trackermap-server-464711d63dafb44e89f3d4112f13250f268c11cd.tar.bz2
trackermap-server-464711d63dafb44e89f3d4112f13250f268c11cd.zip
Merge pull request #2123 from Abyss777/device_attributes
Add attributes for devices
Diffstat (limited to 'web/app/view/AttributesController.js')
-rw-r--r--web/app/view/AttributesController.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/app/view/AttributesController.js b/web/app/view/AttributesController.js
index 8e6ab82a4..5be94dec3 100644
--- a/web/app/view/AttributesController.js
+++ b/web/app/view/AttributesController.js
@@ -27,6 +27,9 @@ Ext.define('Traccar.view.AttributesController', {
var store, propertyName, i = 0, attributes;
store = Ext.create('Traccar.store.Attributes');
store.setProxy(Ext.create('Ext.data.proxy.Memory'));
+ if (typeof this.getView().record.get('attributes') === 'undefined') {
+ this.getView().record.set('attributes', {});
+ }
attributes = this.getView().record.get('attributes');
for (propertyName in attributes) {
if (attributes.hasOwnProperty(propertyName)) {