diff --git a/www/manager6/qemu/USBEdit.js b/www/manager6/qemu/USBEdit.js index 776908a2..1e854a2e 100644 --- a/www/manager6/qemu/USBEdit.js +++ b/www/manager6/qemu/USBEdit.js @@ -13,13 +13,10 @@ Ext.define('PVE.qemu.USBInputPanel', { change: function(field, newValue, oldValue) { var hwidfield = this.lookupReference('hwid'); var portfield = this.lookupReference('port'); - var usb3field = this.lookupReference('usb3'); if (field.inputValue === 'hostdevice') { hwidfield.setDisabled(!newValue); } else if(field.inputValue === 'port') { portfield.setDisabled(!newValue); - } else if(field.inputValue === 'spice') { - usb3field.setDisabled(!newValue); } } },