diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-08 15:48:10 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-08 15:48:10 +0500 |
commit | 77bdf87d34587d0c6a156816f71fc0874bc7f3dc (patch) | |
tree | 49cd339580e98106a089281e48ff2feb04019443 /web/app/view/UserDialogController.js | |
parent | c78b3a3478bbedd84ff2fac13a2577a6e1793ec3 (diff) | |
download | trackermap-server-77bdf87d34587d0c6a156816f71fc0874bc7f3dc.tar.gz trackermap-server-77bdf87d34587d0c6a156816f71fc0874bc7f3dc.tar.bz2 trackermap-server-77bdf87d34587d0c6a156816f71fc0874bc7f3dc.zip |
Pass whole record to attribute editor not to lose "dirtyness"
Diffstat (limited to 'web/app/view/UserDialogController.js')
-rw-r--r-- | web/app/view/UserDialogController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/UserDialogController.js b/web/app/view/UserDialogController.js index db495b8ff..49dfd9d70 100644 --- a/web/app/view/UserDialogController.js +++ b/web/app/view/UserDialogController.js @@ -59,7 +59,7 @@ Ext.define('Traccar.view.UserDialogController', { modal: false, items: { xtype: 'attributesView', - attributes: record.get('attributes') + record: record } }).show(); } |