Commit ed0d8d3e authored by Dietmar Maurer's avatar Dietmar Maurer

change default value for hotplug to match QemuServer default

parent 12541377
...@@ -123,7 +123,7 @@ Ext.define('PVE.qemu.Options', { ...@@ -123,7 +123,7 @@ Ext.define('PVE.qemu.Options', {
}, },
hotplug: { hotplug: {
header: gettext('Hotplug'), header: gettext('Hotplug'),
defaultValue: '', defaultValue: true,
renderer: PVE.Utils.format_boolean, renderer: PVE.Utils.format_boolean,
editor: caps.vms['VM.Config.HWType'] ? { editor: caps.vms['VM.Config.HWType'] ? {
xtype: 'pveWindowEdit', xtype: 'pveWindowEdit',
...@@ -132,7 +132,7 @@ Ext.define('PVE.qemu.Options', { ...@@ -132,7 +132,7 @@ Ext.define('PVE.qemu.Options', {
xtype: 'pvecheckbox', xtype: 'pvecheckbox',
name: 'hotplug', name: 'hotplug',
uncheckedValue: 0, uncheckedValue: 0,
defaultValue: 0, defaultValue: 1,
deleteDefaultValue: true, deleteDefaultValue: true,
fieldLabel: gettext('Hotplug') fieldLabel: gettext('Hotplug')
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment