CSR-835 Update list-button-horizontal, getPartsOrQuestions call
This commit is contained in:
parent
1f68cf3797
commit
ff6a45e6e4
2 changed files with 2 additions and 3 deletions
|
|
@ -717,7 +717,7 @@ export const actions = {
|
|||
endpoint: endpoints.GetPartsOrQuestions.url,
|
||||
payload: {
|
||||
carId: carId,
|
||||
glass: glassArray,
|
||||
glass: glassArray ?? [],
|
||||
zip: zipCode,
|
||||
vin: vin
|
||||
},
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@
|
|||
:name="groupName"
|
||||
:value="value"
|
||||
:aria-required="isRequired"
|
||||
v-model="checkValue"
|
||||
:checked="checkValue"
|
||||
@change="handleInputChange()"
|
||||
/>
|
||||
|
|
@ -91,7 +90,7 @@ export default {
|
|||
if (Array.isArray(this.selectedValues)) {
|
||||
this.checkValue = this.isMultiSelect
|
||||
? this.selectedValues.includes(this.value)
|
||||
: this.selectedValues[0];
|
||||
: this.selectedValues[0] == this.value;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue