mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-06 01:13:19 +00:00
do not send 'undefined' as romfile
when adding a pcidevice, we added 'romfile=undefined' by accident Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
d6aa52529b
commit
2b25a905ad
@ -55,6 +55,10 @@ Ext.define('PVE.qemu.PCIInputPanel', {
|
||||
values.rombar = 0;
|
||||
}
|
||||
|
||||
if (!values.romfile) {
|
||||
delete values.romfile;
|
||||
}
|
||||
|
||||
ret[me.confid] = PVE.Parser.printPropertyString(values, 'host');
|
||||
return ret;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user