This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
variant="outlined"
|
||||
:disabled="loading"
|
||||
required
|
||||
@update:model-value="updateField('first_name', $event)"
|
||||
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12" sm="6">
|
||||
@@ -49,7 +49,7 @@
|
||||
variant="outlined"
|
||||
:disabled="loading"
|
||||
required
|
||||
@update:model-value="updateField('last_name', $event)"
|
||||
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
@@ -65,7 +65,7 @@
|
||||
variant="outlined"
|
||||
:disabled="loading"
|
||||
required
|
||||
@update:model-value="updateField('email', $event)"
|
||||
|
||||
/>
|
||||
|
||||
<PhoneInputWrapper
|
||||
@@ -98,7 +98,7 @@
|
||||
rows="3"
|
||||
:disabled="loading"
|
||||
required
|
||||
@update:model-value="updateField('address', $event)"
|
||||
|
||||
/>
|
||||
|
||||
<MultipleNationalityInput
|
||||
@@ -321,10 +321,7 @@ function onRecaptchaExpired() {
|
||||
// Template refs
|
||||
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
|
||||
async function submitRegistration() {
|
||||
|
||||
Reference in New Issue
Block a user