Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Nov 10, 2023
1 parent cbd9ace commit 74775d6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/module/vue/components/truth/truth-selectable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
type="radio"
class="nogrow"
:name="radioGroup"
@change="emitValue" />
@change="emitValue"
/>
<div class="flexcol">
<p>
<strong>{{ page.name }}</strong>
Expand All @@ -17,13 +18,15 @@
<label
v-for="(entry, i) in page.subtable.results"
:key="`subtableRow${i}`"
class="flexrow nogrow">
class="flexrow nogrow"
>
<input
ref="suboptions"
type="radio"
class="nogrow"
:name="pageSystem.dfid"
@change="subtableSelect(entry)" />
@change="subtableSelect(entry)"
/>
<p v-html="entry.text" />
</label>

Expand Down

0 comments on commit 74775d6

Please sign in to comment.