do not disable hidden submit

this allows user to press enter and the user will report validity
This commit is contained in:
Girish Ramakrishnan
2025-12-08 11:08:38 +01:00
parent 93fe97b94d
commit 4057906b2c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -258,7 +258,7 @@ onMounted(async () => {
<form ref="form" @submit.prevent="onSubmit()" autocomplete="off" @input="checkValidity()">
<fieldset :disabled="editBusy" v-if="provider !== 'noop'">
<input style="display: none" type="submit" :disabled="editBusy || !isFormValid" />
<input style="display: none" type="submit" />
<FormGroup :class="{ 'has-error': editError.url }">
<label class="control-label" for="configUrlInput">{{ $t('users.externalLdap.server') }}</label>