ui: improve ACME edit/apply button visibilty
multiple users were confused[0], as they did not interpret the 'icon only' in the toolbar as a button (and it did not help that we prevented the cursor to change) to improve it, make the button a normal one again, and add some text for context (this is more inline what we do elsewhere in toolbars) 0: https://forum.proxmox.com/threads/acme-over-dnschallenge-failing.71902 Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
99bb257121
commit
3071423551
@ -365,6 +365,7 @@ Ext.define('PVE.node.ACME', {
|
||||
formulas: {
|
||||
canOrder: (get) => !!get('account') && get('domaincount') > 0,
|
||||
editBtnIcon: (get) => 'fa black fa-' + (get('accountEditable') ? 'check' : 'pencil'),
|
||||
editBtnText: (get) => get('accountEditable') ? gettext('Apply') : gettext('Edit'),
|
||||
accountTextHidden: (get) => get('accountEditable') || !get('accountsAvailable'),
|
||||
accountValueHidden: (get) => !get('accountEditable') || !get('accountsAvailable'),
|
||||
},
|
||||
@ -606,10 +607,9 @@ Ext.define('PVE.node.ACME', {
|
||||
{
|
||||
xtype: 'button',
|
||||
iconCls: 'fa black fa-pencil',
|
||||
baseCls: 'x-plain',
|
||||
userCls: 'pointer',
|
||||
bind: {
|
||||
iconCls: '{editBtnIcon}',
|
||||
text: '{editBtnText}',
|
||||
hidden: '{!accountsAvailable}',
|
||||
},
|
||||
handler: 'toggleEditAccount',
|
||||
|
Loading…
Reference in New Issue
Block a user