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