ui: BusTypeSelector: change noVirtIO to withVirtIO
Double negated properties make it harder than necessary to parse conditions. Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com> Reviewed-by: Fabian Ebner <f.ebner@proxmox.com>
This commit is contained in:
parent
678a887928
commit
66e87cd213
@ -2,7 +2,7 @@ Ext.define('PVE.form.BusTypeSelector', {
|
||||
extend: 'Proxmox.form.KVComboBox',
|
||||
alias: 'widget.pveBusSelector',
|
||||
|
||||
noVirtIO: false,
|
||||
withVirtIO: true,
|
||||
withUnused: false,
|
||||
|
||||
initComponent: function() {
|
||||
@ -10,7 +10,7 @@ Ext.define('PVE.form.BusTypeSelector', {
|
||||
|
||||
me.comboItems = [['ide', 'IDE'], ['sata', 'SATA']];
|
||||
|
||||
if (!me.noVirtIO) {
|
||||
if (me.withVirtIO) {
|
||||
me.comboItems.push(['virtio', 'VirtIO Block']);
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@ Ext.define('PVE.form.ControllerSelector', {
|
||||
extend: 'Ext.form.FieldContainer',
|
||||
alias: 'widget.pveControllerSelector',
|
||||
|
||||
noVirtIO: false,
|
||||
withVirtIO: true,
|
||||
withUnused: false,
|
||||
|
||||
vmconfig: {}, // used to check for existing devices
|
||||
@ -73,7 +73,7 @@ Ext.define('PVE.form.ControllerSelector', {
|
||||
name: 'controller',
|
||||
itemId: 'controller',
|
||||
value: PVE.qemu.OSDefaults.generic.busType,
|
||||
noVirtIO: me.noVirtIO,
|
||||
withVirtIO: me.withVirtIO,
|
||||
withUnused: me.withUnused,
|
||||
allowBlank: false,
|
||||
flex: 2,
|
||||
|
@ -71,7 +71,7 @@ Ext.define('PVE.qemu.CDInputPanel', {
|
||||
|
||||
if (!me.confid) {
|
||||
me.bussel = Ext.create('PVE.form.ControllerSelector', {
|
||||
noVirtIO: true,
|
||||
withVirtIO: false,
|
||||
});
|
||||
items.push(me.bussel);
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ Ext.define('PVE.qemu.CIDriveInputPanel', {
|
||||
me.items = [
|
||||
{
|
||||
xtype: 'pveControllerSelector',
|
||||
noVirtIO: true,
|
||||
withVirtIO: false,
|
||||
itemId: 'drive',
|
||||
fieldLabel: gettext('CloudInit Drive'),
|
||||
name: 'drive',
|
||||
|
Loading…
x
Reference in New Issue
Block a user