]> git.proxmox.com Git - pve-manager.git/commitdiff
fix #2708: ui: increase default memory in VM create wizard to 2GiB
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 7 May 2020 13:09:25 +0000 (15:09 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 7 May 2020 13:09:29 +0000 (15:09 +0200)
as nowadays a lot of VMs won't even start the installer with 512 MB.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/qemu/MemoryEdit.js

index d12847162d162056861f3fefa1d850c6e08e9a2f..a8f877713a780ae09588f60465af8f702c20dc21 100644 (file)
@@ -38,6 +38,7 @@ Ext.define('PVE.qemu.MemoryInputPanel', {
                labelWidth: labelWidth,
                fieldLabel: gettext('Memory') + ' (MiB)',
                name: 'memory',
+               value: me.insideWizard ? '2048' : '512',
                minValue: 1,
                step: 32,
                hotplug: me.hotplug,