diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-28 22:49:08 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-28 22:49:08 +0500 |
commit | 647071c9483daa2046d7f75c335b2763672befc6 (patch) | |
tree | 01330c1e772a2b19f856b071a3ba2b88564ed2ae /web/app/view/UserDialog.js | |
parent | 8cb9fb298578bc4870a360d258172ef80cffeee3 (diff) | |
download | trackermap-server-647071c9483daa2046d7f75c335b2763672befc6.tar.gz trackermap-server-647071c9483daa2046d7f75c335b2763672befc6.tar.bz2 trackermap-server-647071c9483daa2046d7f75c335b2763672befc6.zip |
Added attributes editor
Diffstat (limited to 'web/app/view/UserDialog.js')
-rw-r--r-- | web/app/view/UserDialog.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js index 6b768c887..02c1342ac 100644 --- a/web/app/view/UserDialog.js +++ b/web/app/view/UserDialog.js @@ -24,7 +24,7 @@ Ext.define('Traccar.view.UserDialog', { controller: 'userDialog', title: Strings.settingsUser, - items: { + items: [{ xtype: 'form', items: [{ xtype: 'textfield', @@ -89,5 +89,9 @@ Ext.define('Traccar.view.UserDialog', { fieldLabel: Strings.settingsTwelveHourFormat, allowBlank: false }] - } + }, { + xtype: 'button', + text : Strings.sharedAttributes, + handler: 'attributesView' + }] }); |