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