Kaynağa Gözat

bugfix domain aliase

andre 2 yıl önce
ebeveyn
işleme
11a685a5ac

+ 2 - 2
app/UI/Client/DomainAlias/Forms/AddDomainAliasForm.php

@@ -34,9 +34,9 @@ class AddDomainAliasForm extends SortedFieldForm implements ClientArea
     protected function initFields()
     {
         $email = new InputGroup('aliasGroup');
-        $email->addInputComponent((new InputText('domain'))->addHtmlAttribute('readonly','true'));
-        $email->addInputAddon('emailSign', false, '→');
         $email->addInputComponent((new InputText('alias')));
+        $email->addInputAddon('emailSign', false, '→');
+        $email->addInputComponent((new InputText('domain'))->addHtmlAttribute('readonly','true'));
         $this->addSection($email);
 
         $this->addField((new Text('description'))->setDescription('descriptionDomainList'));