diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index 5b0808a9c..5fe1aa6e4 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -261,9 +261,10 @@ export default { // this.$emit("isCheckedChanged", val); // }, handleAnswerChange(eventValue) { - // console.log({ - // bqEvent: eventValue - // }) + console.log({ + bqEvent: eventValue + }) + this.$emit("change", 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 3fd39fbcf..57fe58505 100644 --- a/src/common-components/input-button-wrapper/input-button-wrapper.vue +++ b/src/common-components/input-button-wrapper/input-button-wrapper.vue @@ -102,7 +102,7 @@ export default { // const isSingleAnswerPreselected = this.modelValue?.length === 1 && this.isChecked; if (this.isChecked) { - console.log("HI THERE"); + // console.log("HI THERE"); this.handleChange(this.modelValue); } }, @@ -241,7 +241,7 @@ export default { this.valueToEmit = newValue; } else { - console.log("not multi"); + // console.log("not multi"); this.valueToEmit = this.value; } @@ -253,7 +253,7 @@ export default { // } }, handleClick(e) { - console.log("handleClick"); + // console.log("handleClick"); this.handleSelectionChange(e); // console.log("HC"); // console.log({ @@ -335,8 +335,7 @@ export default { }; - -