ui: access: stream line add/edit/.. button order and separators
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
44de5bcc00
commit
6676409f7f
|
@ -241,6 +241,7 @@ Ext.define('PBS.config.TfaView', {
|
|||
],
|
||||
},
|
||||
},
|
||||
'-',
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Edit'),
|
||||
|
|
|
@ -149,6 +149,7 @@ Ext.define('PBS.config.TokenView', {
|
|||
handler: 'addToken',
|
||||
selModel: false,
|
||||
},
|
||||
'-',
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Edit'),
|
||||
|
@ -166,9 +167,10 @@ Ext.define('PBS.config.TokenView', {
|
|||
return '/access/users/' + encodeURIComponent(user) + '/token/' + encodeURIComponent(tokenname);
|
||||
},
|
||||
},
|
||||
'-',
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Permissions'),
|
||||
text: gettext('Show Permissions'),
|
||||
handler: 'showPermissions',
|
||||
disabled: true,
|
||||
},
|
||||
|
|
|
@ -128,27 +128,29 @@ Ext.define('PBS.config.UserView', {
|
|||
handler: 'addUser',
|
||||
selModel: false,
|
||||
},
|
||||
'-',
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Edit'),
|
||||
handler: 'editUser',
|
||||
disabled: true,
|
||||
},
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Password'),
|
||||
handler: 'setPassword',
|
||||
disabled: true,
|
||||
},
|
||||
{
|
||||
xtype: 'proxmoxStdRemoveButton',
|
||||
baseurl: '/access/users/',
|
||||
enableFn: (rec) => rec.data.userid !== 'root@pam',
|
||||
callback: 'reload',
|
||||
},
|
||||
'-',
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Permissions'),
|
||||
text: gettext('Change Password'),
|
||||
handler: 'setPassword',
|
||||
disabled: true,
|
||||
},
|
||||
{
|
||||
xtype: 'proxmoxButton',
|
||||
text: gettext('Show Permissions'),
|
||||
handler: 'showPermissions',
|
||||
disabled: true,
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue