Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
fix: support for charna value changes
Browse files Browse the repository at this point in the history
  • Loading branch information
villetakanen committed Dec 3, 2021
1 parent f4b5a19 commit ec5b815
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/keeper/CharacterList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
>
<div>
<span>{{ stat }}</span>&nbsp;
<span>{{ character[1].getStat(stat) }}</span>
<span>{{ character[1].getStat(stat) ? character[1].getStat(stat).value : '' }}</span>
</div>
</template>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/views/site/Keeper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<div class="keeper">
<SiteToolbar />
<main class="bookLayout">
<CharacterList />
<CharacterList class="double" />
<div>Playertool</div>
</main>
</div>
</template>
Expand Down

0 comments on commit ec5b815

Please sign in to comment.