mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-13 11:37:06 +00:00
9 lines
269 B
JavaScript
9 lines
269 B
JavaScript
Ext.define('PVE.form.EmailNotificationSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveEmailNotificationSelector'],
|
|
comboItems: [
|
|
['always', gettext('Always')],
|
|
['failure', gettext('On failure only')]
|
|
]
|
|
});
|