]> git.proxmox.com Git - pve-manager.git/blob - www/manager5/form/FirewallPolicySelector.js
update build infrastucture to be able to develop with Ext6
[pve-manager.git] / www / manager5 / form / FirewallPolicySelector.js
1 Ext.define('PVE.form.FirewallPolicySelector', {
2 extend: 'PVE.form.KVComboBox',
3 alias: ['widget.pveFirewallPolicySelector'],
4
5 initComponent: function() {
6 var me = this;
7
8 me.data = [
9 ['ACCEPT', 'ACCEPT'],
10 ['REJECT', 'REJECT'],
11 [ 'DROP', 'DROP']
12 ];
13
14 me.callParent();
15 }
16 });