add defaultSize parameter for DiskStorageSelector and set it to 8 for lxc

we had it previously on 8GB for containers, but with the refactoring,
this got lost. this patch changes this back

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
Reviewed-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Dominik Csapak 2017-12-13 11:34:48 +01:00 committed by Wolfgang Bumiller
parent 724a6cb3c8
commit 6025e7b4a4
2 changed files with 6 additions and 1 deletions

View File

@ -28,6 +28,10 @@ Ext.define('PVE.form.DiskStorageSelector', {
// hides the size field (e.g, for the efi disk dialog)
hideSize: false,
// sets the intial size value
// string because else we get a type confusion
defaultSize: '32',
changeStorage: function(f, value) {
var me = this;
var formatsel = me.getComponent('diskformat');
@ -115,7 +119,7 @@ Ext.define('PVE.form.DiskStorageSelector', {
minValue: 0.001,
maxValue: 128*1024,
decimalPrecision: 3,
value: '32',
value: me.defaultSize,
allowBlank: false
},
{

View File

@ -175,6 +175,7 @@ Ext.define('PVE.lxc.MountPointInputPanel', {
nodename: me.nodename,
storageContent: 'rootdir',
autoSelect: true,
defaultSize: 8,
hidden: me.unused || !me.isCreate
});