CSR-319: fix typo

This commit is contained in:
Adam Caouette 2022-03-01 10:04:05 -05:00
parent bb3894441a
commit cd5fcfb7e2
3 changed files with 7 additions and 4 deletions

View file

@ -123,8 +123,9 @@ export default {
},
methods: {
handleCheckedChanged(val) {
console.log('BQ handleCheckedChanged, val: ', val)
console.log('BQ (', this.groupName, ') handleCheckedChanged, val: ', val)
if(this.isMultiSelect && this.selectedValues) {
console.log('BQ (', this.groupName, ') handleCheckedChanged, this.selectedValues is 1st: ', this.selectedValues)
// Add or remove item to array of data to emit
const newSelectedValues = this.selectedValues;
if(Array.isArray(this.selectedValues)) {
@ -134,7 +135,7 @@ export default {
} else {
this.selectedValues = [val.value];
}
console.log('BQ handleCheckedChanged, this.selectedValues is now: ', this.selectedValues)
console.log('BQ (', this.groupName, ') handleCheckedChanged, this.selectedValues is now: ', this.selectedValues)
},
},
components: {

View file

@ -113,6 +113,8 @@ export default {
const resultMap = await settleAllPromises(promiseResultMap);
console.log('resultMap: ', resultMap);
// Call the "next" function to complete the transition to this page.
next((vm) => {
vm.$refs.funnelHeader.initializeComponent(
@ -147,7 +149,7 @@ export default {
selectedDamageLocations: [],
sideDoorOptionsData: {
selectedDoorSides: [],
selectedDriverSideReplacOptions: [],
selectedDriverSideReplaceOptions: [],
selectedPassengerSideReplaceOptions: []
},
selectedWindshieldOptions: [],

View file

@ -19,7 +19,7 @@
groupName="driverSideOptions"
isMultiSelect
filterByVehicleCategory
v-model="selectedDriverSideReplacOptionsValues"
v-model="selectedDriverSideReplaceOptionsValues"
validationRules="driver-side-options-required"
/>
<replaceOptionsQuestion