فهرست منبع

bugfix max disk size

andre 4 سال پیش
والد
کامیت
49b3833877
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      app/UI/VmCreate/Sections/Qemu/GeneralSection.php

+ 1 - 0
app/UI/VmCreate/Sections/Qemu/GeneralSection.php

@@ -136,6 +136,7 @@ class GeneralSection extends HalfPageSection
             $maxRange = $this->configuration()->serverDiskSize->max;
             $maxRange = $this->configuration()->serverDiskSize->max;
         }
         }
         $field = new Range('disk', $this->configuration()->serverDiskSize->min, $maxRange);
         $field = new Range('disk', $this->configuration()->serverDiskSize->min, $maxRange);
+        $field->setDefaultValue($this->configuration()->serverDiskSize->min);
         $field->addValidator(new DiskSizeValidator('disk',true));
         $field->addValidator(new DiskSizeValidator('disk',true));
         $field->setDescription('description');
         $field->setDescription('description');
         $this->addField($field);
         $this->addField($field);