diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index f4594c06b..3c8ce6878 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -130,6 +130,7 @@ export default { return this.modelValue; }, set: function(newValue) { + console.log(newValue) this.$emit("update:modelValue", newValue); } }, @@ -143,15 +144,20 @@ export default { return answer.Name ? answer.Name : answer; }, handleCheckedChanged(val) { + console.log(val) + console.log("A") if(this.selectingInitiatesLoad) { + console.log("B") this.selectedValues = [val.value]; } else { if(Array.isArray(this.selectedValues)) { + console.log("C") const newSelectedValues = this.selectedValues; val.checkValue ? newSelectedValues.push(val.value) : newSelectedValues.splice(newSelectedValues.indexOf(val.value), 1); this.selectedValues = newSelectedValues; } else { + console.log("D") this.selectedValues = val.value; } } diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index 2c4152cfa..0ad18c6b1 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -85,6 +85,7 @@ export default { }; }, buttonClick() { + console.log("HI") //prevent keyboard input after button click document.onkeydown = function (e) { return false; diff --git a/src/layouts/vehicle-parts/glass-part-question/glass-part-question.vue b/src/layouts/vehicle-parts/glass-part-question/glass-part-question.vue index 029088cd7..e010f82b5 100644 --- a/src/layouts/vehicle-parts/glass-part-question/glass-part-question.vue +++ b/src/layouts/vehicle-parts/glass-part-question/glass-part-question.vue @@ -4,11 +4,6 @@

{{ colorQuestionText }}

- {{ featureListData }} -
- {{ tintSelectionOptions }} -
- {{ selectedTint }} {{ selectedPart }}
@@ -34,6 +29,7 @@ class="radioQuestion" :questionText="glassFeatureQuestion" :answers="featureListData[selectedTint]" + :selectedValues="selectedPart" textPosition="text-start" :loaderEnabled="false" isRequired @@ -123,7 +119,7 @@ export default { return this.modelValue; }, set: function (newValue) { - console.log("modelValue: " + newValue) + console.log(newValue) this.$emit("update:modelValue", newValue); }, }, diff --git a/src/layouts/vehicle-parts/vehicle-parts.vue b/src/layouts/vehicle-parts/vehicle-parts.vue index 47faea58c..e4eb22c69 100644 --- a/src/layouts/vehicle-parts/vehicle-parts.vue +++ b/src/layouts/vehicle-parts/vehicle-parts.vue @@ -27,7 +27,7 @@

- +{{ glassParts }} value).length === 0; }, PartsForQuestions() { diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index 95985f7c4..25a651d52 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -46,6 +46,7 @@ html { input[type=radio]+label:before, input[type=checkbox]+label:before { border: 1px solid $red; + background-color: initial; } input[type=checkbox]:checked + label:before { border: 1px solid $blue; diff --git a/src/ux-components/radio/radio.vue b/src/ux-components/radio/radio.vue index 7c11a5997..98fff6b35 100644 --- a/src/ux-components/radio/radio.vue +++ b/src/ux-components/radio/radio.vue @@ -1,18 +1,19 @@