瀏覽代碼

add ressources

andre 2 年之前
父節點
當前提交
7fa11a536c
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      app/UI/Client/Ressource/Forms/AddRessourceForm.php

+ 6 - 1
app/UI/Client/Ressource/Forms/AddRessourceForm.php

@@ -57,7 +57,12 @@ class AddRessourceForm extends SortedFieldForm implements ClientArea
         $email->addInputComponent((new InputGroupElements\Text('domain'))->addHtmlAttribute('readonly','true'));
         $this->addSection($email);
 
-        $this->generateDoubleSection([new Text('description'), new Select('type')]);
+        $desc = new RawSection();
+        $desc->addField(new Text('description'));
+        $desc->addField(new Select('type'));
+        $this->addSection($desc);
+
+//        $this->generateDoubleSection([new Text('description'), new Select('type')]);
 
         $this->generateDoubleSection([new Select('manager'), new Select('status')]);