do not attach v-if to the form since we cannot find it by ref anymore
This commit is contained in:
@@ -173,8 +173,8 @@ async function onSubmit() {
|
||||
|
||||
<div class="text-danger" v-if="formError">{{ formError }}</div>
|
||||
|
||||
<form ref="form" @submit.prevent="onSubmit()" autocomplete="off" v-if="usesExternalServer(provider)" @input="checkValidity()">
|
||||
<fieldset :disabled="busy">
|
||||
<form ref="form" @submit.prevent="onSubmit()" autocomplete="off" @input="checkValidity()">
|
||||
<fieldset :disabled="busy" v-if="usesExternalServer(provider)">
|
||||
<input type="submit" style="display: none" :disabled="busy || !isFormValid"/>
|
||||
|
||||
<FormGroup>
|
||||
|
||||
Reference in New Issue
Block a user