mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-12 11:38:01 +00:00
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
Ext.define('PVE.form.iScsiProviderSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveiScsiProviderSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.data = [
|
|
['comstar', 'Comstar'],
|
|
[ 'istgt', 'istgt'],
|
|
[ 'iet', 'IET']
|
|
];
|
|
|
|
me.callParent();
|
|
}
|
|
});
|