Skip to content

Commit

Permalink
Fixing event throw on matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
datajohnson committed Nov 1, 2024
1 parent 57c4a93 commit 6e7a673
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/web/src/components/QuestionRenderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,9 @@
{{ sub.ASK }}
</th>
<td v-for="ch of sub.choices" v-if="sub.isVisible" :style="'width:' + 50 / sub.choices.length + '%'">
<v-radio-group v-model="sub.answer" hide-details class="mb-3"
><v-radio
class="my-0 mx-auto"
hide-details
:value="ch.val"
density="compact"
@update:model-value="subUpdated(sub)"
style="width: 30px"
/></v-radio-group>
<v-radio-group v-model="sub.answer" hide-details class="mb-3" @update:model-value="subUpdated(sub)">
<v-radio class="my-0 mx-auto" hide-details :value="ch.val" density="compact" style="width: 30px" />
</v-radio-group>
</td>
</tr>
</table>
Expand Down

0 comments on commit 6e7a673

Please sign in to comment.