From e260a8ae89f2293f4854937f2a510c2f96011b46 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 28 Nov 2023 17:06:26 +0100 Subject: [PATCH] fix(QuestionMultiple): Fix setting the `allowOtherAnswer` option Signed-off-by: Ferdinand Thiessen --- src/components/Questions/QuestionMultiple.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Questions/QuestionMultiple.vue b/src/components/Questions/QuestionMultiple.vue index ca202cd9d..735cec1e4 100644 --- a/src/components/Questions/QuestionMultiple.vue +++ b/src/components/Questions/QuestionMultiple.vue @@ -468,7 +468,7 @@ export default { * @param {boolean} allowOtherAnswer show/hide field for other answer */ onAllowOtherAnswerChange(allowOtherAnswer) { - return this.onExtraSettingsChange('allowOtherAnswer', allowOtherAnswer) + return this.onExtraSettingsChange({ allowOtherAnswer }) }, }, }