diff --git a/src/components/Questions/QuestionMultiple.vue b/src/components/Questions/QuestionMultiple.vue index 16a777550..b70c3df64 100644 --- a/src/components/Questions/QuestionMultiple.vue +++ b/src/components/Questions/QuestionMultiple.vue @@ -79,18 +79,18 @@ :key="answer.id" :aria-errormessage="hasError ? errorId : undefined" :aria-invalid="hasError ? 'true' : undefined" - :checked="questionValues" + :model-value="questionValues" :value="answer.id.toString()" :name="`${id}-answer`" :type="isUnique ? 'radio' : 'checkbox'" :required="checkRequired(answer.id)" - @update:checked="onChange" + @update:modelValue="onChange" @keydown.enter.exact.prevent="onKeydownEnter"> {{ answer.text }}