Commit 019b0abc authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #177: allow memory up to 512GB

parent 8d44236a
pve-manager (2.0-64) unstable; urgency=low
* fix bug #179: set default button 'no' for dangerous actions
* fix bug #179: set default button 'no' for dangerous actions, use
warning icon for such actions
* fix bug #177: allow memory up to 512GB
-- Proxmox Support Team <support@proxmox.com> Tue, 24 Apr 2012 08:09:23 +0200
......
......@@ -14,7 +14,7 @@ Ext.define('PVE.openvz.RessourceInputPanel', {
xtype: 'numberfield',
name: 'memory',
minValue: 32,
maxValue: 128*1024,
maxValue: 512*1024,
value: '512',
step: 32,
fieldLabel: gettext('Memory') + ' (MB)',
......
......@@ -13,7 +13,7 @@ Ext.define('PVE.qemu.MemoryInputPanel', {
xtype: 'numberfield',
name: 'memory',
minValue: 32,
maxValue: 128*1024,
maxValue: 512*1024,
value: '512',
step: 32,
fieldLabel: gettext('Memory') + ' (MB)',
......
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