mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-14 11:28:49 +00:00
17 lines
396 B
JavaScript
17 lines
396 B
JavaScript
Ext.define('PVE.form.QemuBiosSelector', {
|
|
extend: 'Proxmox.form.KVComboBox',
|
|
alias: ['widget.pveQemuBiosSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.comboItems = [
|
|
['__default__', PVE.Utils.render_qemu_bios('')],
|
|
['seabios', PVE.Utils.render_qemu_bios('seabios')],
|
|
['ovmf', PVE.Utils.render_qemu_bios('ovmf')],
|
|
];
|
|
|
|
me.callParent();
|
|
},
|
|
});
|