[pve-devel] [PATCH manager] fix #1605: reflect backend values of minimum memory limit
Wolfgang Bumiller
w.bumiller at proxmox.com
Wed Dec 27 11:42:48 CET 2017
The backend's minimum value for container memory is 16M,
not 32.
Signed-off-by: Wolfgang Bumiller <w.bumiller at proxmox.com>
---
www/manager6/lxc/ResourceEdit.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/manager6/lxc/ResourceEdit.js b/www/manager6/lxc/ResourceEdit.js
index 6bd35e8a..641d8636 100644
--- a/www/manager6/lxc/ResourceEdit.js
+++ b/www/manager6/lxc/ResourceEdit.js
@@ -121,7 +121,7 @@ Ext.define('PVE.lxc.MemoryInputPanel', {
{
xtype: 'pveIntegerField',
name: 'memory',
- minValue: 32,
+ minValue: 16,
maxValue: 512*1024,
value: '512',
step: 32,
--
2.11.0
More information about the pve-devel
mailing list