Browse Source

new info form

andre 5 months ago
parent
commit
bc6af26713
1 changed files with 6 additions and 1 deletions
  1. 6 1
      app/UI/Client/Setting/Forms/InfoForm.php

+ 6 - 1
app/UI/Client/Setting/Forms/InfoForm.php

@@ -63,7 +63,12 @@ class InfoForm extends BaseForm implements ClientArea
         $row->addInputAddon('', false, '→');
         $row->addInputAddon('', false, '→');
         $row->addInputComponent((new InputGroupElements\Text('dkim'))->addHtmlAttribute('readonly','true'));
         $row->addInputComponent((new InputGroupElements\Text('dkim'))->addHtmlAttribute('readonly','true'));
         $this->addSection($row);
         $this->addSection($row);
-        $this->generateDoubleSection([new Text('maildomain'), new Select('id')]);
+        $hide1 = new Text('maildomain');
+        $hide1->addHtmlAttribute('display','none');
+        $hide2 = new Text('id');
+        $hide2->addHtmlAttribute('display','none');
+
+        $this->generateDoubleSection([$hide1, $hide2]);
 
 
     }
     }
 }
 }