diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index 329b28538..6a2cbe165 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -55,6 +55,7 @@ :isWide="isWide" :validationRules="validationRules" :textPosition="textPosition" + :selectOnKeypress="selectOnKeypress" @change="handleAnswerChange" /> @@ -151,6 +152,7 @@ export default { suppressError: Boolean, useTextForValue: Boolean, valueToLogType: String, + selectOnKeypress: Boolean, }, computed: { getFieldSetClasses() { @@ -261,7 +263,9 @@ export default { // this.$emit("isCheckedChanged", val); // }, handleAnswerChange(eventValue) { - console.log(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 34507107b..a1295f1bd 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,7 @@