diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-09 00:06:07 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-09 00:06:07 +1200 |
commit | 88b48828e46cdb444c4b77f474e0e8c8f37c23ca (patch) | |
tree | 49cd339580e98106a089281e48ff2feb04019443 /web/app/view/UserDialogController.js | |
parent | c78b3a3478bbedd84ff2fac13a2577a6e1793ec3 (diff) | |
parent | 77bdf87d34587d0c6a156816f71fc0874bc7f3dc (diff) | |
download | trackermap-server-88b48828e46cdb444c4b77f474e0e8c8f37c23ca.tar.gz trackermap-server-88b48828e46cdb444c4b77f474e0e8c8f37c23ca.tar.bz2 trackermap-server-88b48828e46cdb444c4b77f474e0e8c8f37c23ca.zip |
Merge pull request #2091 from Abyss777/master
Pass whole record to attribute editor
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(); } |