mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-12 09:45:00 +00:00
22 lines
307 B
JavaScript
22 lines
307 B
JavaScript
Ext.define('PVE.qemu.BiosEdit', {
|
|
extend: 'PVE.window.Edit',
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
Ext.applyIf(me, {
|
|
subject: 'BIOS',
|
|
items: {
|
|
xtype: 'pveQemuBiosSelector',
|
|
name: 'bios',
|
|
value: '',
|
|
fieldLabel: 'BIOS'
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
}
|
|
});
|