Skip to content

Commit 30ca4d5

Browse files
committed
Don't show image wrapper on regular multiple choice questions
1 parent 31d2131 commit 30ca4d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/QuestionTypes/MultipleChoiceType.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
v-bind:aria-label="getLabel(index)"
1010
role="option"
1111
>
12-
<span class="f-image">
13-
<img v-if="hasImages && option.imageSrc" v-bind:src="option.imageSrc" v-bind:alt="option.imageAlt">
12+
<span class="f-image" v-if="hasImages && option.imageSrc">
13+
<img v-bind:src="option.imageSrc" v-bind:alt="option.imageAlt">
1414
</span>
1515
<div class="f-label-wrap">
1616
<span class="f-key">{{ getToggleKey(index) }}</span>

0 commit comments

Comments
 (0)