fixes
Build And Push Image / docker (push) Successful in 3m7s Details

This commit is contained in:
Matt 2025-08-08 20:49:50 +02:00
parent 3894295569
commit cb73b239a8
1 changed files with 5 additions and 8 deletions

View File

@ -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() {