mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-14 19:38:11 +00:00
ui: backup job: avoid row wrapping due to overly long label
We can express that it's a notification in the combobox. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
3ce05d40af
commit
04da73f851
@ -205,7 +205,7 @@ Ext.define('PVE.dc.BackupEdit', {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'pveEmailNotificationSelector',
|
xtype: 'pveEmailNotificationSelector',
|
||||||
fieldLabel: gettext('Email notification'),
|
fieldLabel: gettext('Email'),
|
||||||
name: 'mailnotification',
|
name: 'mailnotification',
|
||||||
deleteEmpty: !me.isCreate,
|
deleteEmpty: !me.isCreate,
|
||||||
value: me.isCreate ? 'always' : '',
|
value: me.isCreate ? 'always' : '',
|
||||||
|
@ -2,7 +2,7 @@ Ext.define('PVE.form.EmailNotificationSelector', {
|
|||||||
extend: 'Proxmox.form.KVComboBox',
|
extend: 'Proxmox.form.KVComboBox',
|
||||||
alias: ['widget.pveEmailNotificationSelector'],
|
alias: ['widget.pveEmailNotificationSelector'],
|
||||||
comboItems: [
|
comboItems: [
|
||||||
['always', gettext('Always')],
|
['always', gettext('Notify always')],
|
||||||
['failure', gettext('On failure only')],
|
['failure', gettext('On failure only')],
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user