Merge branch 'develop' into rlsmerge/2025.03.13-to-develop

This commit is contained in:
CarlNation 2025-03-13 07:03:36 -04:00
commit 8b378fc8f9
3 changed files with 2 additions and 21 deletions

View file

@ -124,10 +124,6 @@ export default {
type: Boolean,
default: false,
},
isAddressFieldFocused: {
type: Boolean,
default: true,
},
},
data() {
return {
@ -229,9 +225,6 @@ export default {
).then(() => {
// When loaded, trigger the setup
this.initializeAutocomplete();
if (this.isAddressFieldFocused) {
this.addressField1.focus();
}
});
},
initializeAutocomplete() {

View file

@ -19,8 +19,7 @@
ref="customerQuestions"
v-model="customerQuestions"
:validationRules="EmailOrSmsValidationRules"
:isEmailOptional="IsEmailOptional"
:isAddressFieldFocused="IsAddressFieldFocused" />
:isEmailOptional="IsEmailOptional" />
<alert
ref="alertVinNotFound"
v-if="displayVinNotFoundAlert"
@ -465,9 +464,6 @@ export default {
.replaceAll("{custom:vinYmmFound}", vinYmmFound)
.replaceAll("{custom:vinYmmExpected}", vinYmmExpected);
},
IsAddressFieldFocused() {
return false;
},
},
watch: {
customerQuestions: {

View file

@ -1,9 +1,6 @@
<template>
<div class="customer-questions">
<addressQuestions
ref="addressQuestions"
v-model="customerModel.addressQuestions"
:isAddressFieldFocused="isAddressFieldFocused" />
<addressQuestions ref="addressQuestions" v-model="customerModel.addressQuestions" />
<div class="row mb-4">
<div class="col">
<textboxQuestion
@ -90,11 +87,6 @@ export default {
},
validationRules: String,
isEmailOptional: Boolean,
isAddressFieldFocused: {
required: false,
type: Boolean,
default: true,
},
},
computed: {
customerModel: {