mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-14 21:03:51 +00:00

We can express that it's a notification in the combobox. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
9 lines
252 B
JavaScript
9 lines
252 B
JavaScript
Ext.define('PVE.form.EmailNotificationSelector', {
|
|
extend: 'Proxmox.form.KVComboBox',
|
|
alias: ['widget.pveEmailNotificationSelector'],
|
|
comboItems: [
|
|
['always', gettext('Notify always')],
|
|
['failure', gettext('On failure only')],
|
|
],
|
|
});
|