Skip to content

Commit

Permalink
Name
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Mar 12, 2023
1 parent 46b2540 commit 0080b76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/module/vue/delve-theme-domain-sheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
<h3 class="nogrow">{{ $t('IRONSWORN.DELVESITE.Dangers') }}</h3>
<table>
<tbody>
<tr v-for="feature in typedSystem.dangers">
<td>{{ formattedRange(feature.range) }}</td>
<tr v-for="danger in typedSystem.dangers">
<td>{{ formattedRange(danger.range) }}</td>
<td>
<input type="text" v-model="feature.text" @blur="save" />
<input type="text" v-model="danger.text" @blur="save" />
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 0080b76

Please sign in to comment.