Parcourir la source

try to fix the detailed view

andre il y a 4 ans
Parent
commit
5409a19edb
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      app/UI/VmUpdate/Sections/Qemu/GeneralSection.php

+ 2 - 2
app/UI/VmUpdate/Sections/Qemu/GeneralSection.php

@@ -166,13 +166,13 @@ class GeneralSection extends BaseSection
         //boot device 2
         $field = new Select("bootOrder1");
         $field->notEmpty();
-        $field->setDefaultValue('0');
+        $field->setDefaultValue('None');
         $field->addClass('hidden');
         $this->addField($field);
         //boot device 3
         $field = new Select("bootOrder2");
         $field->notEmpty();
-        $field->setDefaultValue('0');
+        $field->setDefaultValue('None');
         $field->addClass('hidden');
         $this->addField($field);
     }