mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-03 21:20:56 +00:00

listen to 'activate' event is needed because of framework changes,
similar to c0b3df6e34
ext6migrate: listen to 'activate' events for panels inside a tabpanel
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
Ext.define('PVE.form.FirewallPolicySelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveFirewallPolicySelector'],
|
|
comboItems: [
|
|
['ACCEPT', 'ACCEPT'],
|
|
['REJECT', 'REJECT'],
|
|
[ 'DROP', 'DROP']
|
|
]
|
|
});
|