fixes
Build And Push Image / docker (push) Successful in 3m7s
Details
Build And Push Image / docker (push) Successful in 3m7s
Details
This commit is contained in:
parent
3894295569
commit
cb73b239a8
|
|
@ -36,7 +36,7 @@
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
required
|
required
|
||||||
@update:model-value="updateField('first_name', $event)"
|
|
||||||
/>
|
/>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" sm="6">
|
<v-col cols="12" sm="6">
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
required
|
required
|
||||||
@update:model-value="updateField('last_name', $event)"
|
|
||||||
/>
|
/>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
required
|
required
|
||||||
@update:model-value="updateField('email', $event)"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<PhoneInputWrapper
|
<PhoneInputWrapper
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
rows="3"
|
rows="3"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
required
|
required
|
||||||
@update:model-value="updateField('address', $event)"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<MultipleNationalityInput
|
<MultipleNationalityInput
|
||||||
|
|
@ -321,10 +321,7 @@ function onRecaptchaExpired() {
|
||||||
// Template refs
|
// Template refs
|
||||||
const recaptcha = ref<any>(null);
|
const recaptcha = ref<any>(null);
|
||||||
|
|
||||||
// Helper function to handle form field updates (prevents autocomplete conflicts)
|
|
||||||
const updateField = (fieldName: keyof typeof form.value, value: string) => {
|
|
||||||
form.value[fieldName] = value;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Form submission
|
// Form submission
|
||||||
async function submitRegistration() {
|
async function submitRegistration() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue