From 95e972a02fb6df9f3db4255cf536d06bfc5d06e1 Mon Sep 17 00:00:00 2001 From: Katie Date: Mon, 19 Sep 2022 16:17:52 -0400 Subject: [PATCH] CSR-762 list-card with aggressive validation --- .../button-question/button-question.vue | 6 +- .../input-button-wrapper.vue | 69 ++++++++++++++----- .../damage-location-question.vue | 2 +- .../replace-options-question.vue | 21 +++--- src/layouts/vehicle-damage/vehicle-damage.vue | 6 +- .../windshield-chip-count-question.vue | 1 + .../windshield-damage-type-question.vue | 24 +++---- src/mixins/button-question-wrapper-mixin.js | 1 + .../list-button-horizontal.vue | 67 ++++++++++-------- src/ux-components/list-card/list-card.vue | 2 +- 10 files changed, 125 insertions(+), 74 deletions(-) diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index 9fdb19a7b..07897f0e6 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -263,9 +263,9 @@ export default { // this.$emit("isCheckedChanged", val); // }, handleAnswerChange(eventValue) { - console.log({ - bqEvent: eventValue - }) + // console.log({ + // bqEvent: eventValue + // }) this.$emit("update:modelValue", eventValue); }, }, diff --git a/src/common-components/input-button-wrapper/input-button-wrapper.vue b/src/common-components/input-button-wrapper/input-button-wrapper.vue index 4c9e04397..374b4b5e0 100644 --- a/src/common-components/input-button-wrapper/input-button-wrapper.vue +++ b/src/common-components/input-button-wrapper/input-button-wrapper.vue @@ -2,7 +2,6 @@