]> git.proxmox.com Git - pve-manager.git/commitdiff
fix #1605: reflect backend values of minimum memory limit
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 27 Dec 2017 10:42:48 +0000 (11:42 +0100)
committerDominik Csapak <d.csapak@proxmox.com>
Tue, 2 Jan 2018 11:40:43 +0000 (12:40 +0100)
The backend's minimum value for container memory is 16M,
not 32.

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
www/manager6/lxc/ResourceEdit.js

index 6bd35e8ab224ad277f624cde54293247b03f691a..641d863619022d9326dc867c53b9558e9028a5d5 100644 (file)
@@ -121,7 +121,7 @@ Ext.define('PVE.lxc.MemoryInputPanel', {
            {
                xtype: 'pveIntegerField',
                name: 'memory',
-               minValue: 32,
+               minValue: 16,
                maxValue: 512*1024,
                value: '512',
                step: 32,