diff --git a/application/forms/Config/GeneralConfigForm.php b/application/forms/Config/GeneralConfigForm.php index 6c619c2..73b7abc 100644 --- a/application/forms/Config/GeneralConfigForm.php +++ b/application/forms/Config/GeneralConfigForm.php @@ -367,7 +367,6 @@ public function createElements(array $formData) 'placeholder' => 30, 'description' => $this->translate('JWT Token expiration in seconds. A very short time is recommended. Default 30 seconds.'), 'required' => false, - 'class' => 'autosubmit', ] ); $this->addElement( @@ -378,7 +377,6 @@ public function createElements(array $formData) 'label' => $this->translate('JWT Issuer'), 'description' => $this->translate('The issuer of the token (e.g. URL of this system). Can be used as a validation when other systems receive the token. Default is empty, no issuer.'), 'required' => false, - 'class' => 'autosubmit', ] ); $this->addElement( @@ -389,7 +387,6 @@ public function createElements(array $formData) 'label' => $this->translate('JWT Subject (login)'), 'description' => $this->translate('The username or email to be used as login. Leave empty to use the Icinga Web username.'), 'required' => false, - 'class' => 'autosubmit', ] ); }