Fixed hit dice missing on stats tab
This commit is contained in:
@@ -161,13 +161,13 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="properties.hitDice && properties.hitDice.length"
|
v-if="properties.attribute.hitDice && properties.attribute.hitDice.length"
|
||||||
class="hit-dice"
|
class="hit-dice"
|
||||||
>
|
>
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-list>
|
<v-list>
|
||||||
<v-subheader>Hit Dice</v-subheader>
|
<v-subheader>Hit Dice</v-subheader>
|
||||||
<template v-for="(hitDie, index) in hitDice">
|
<template v-for="(hitDie, index) in properties.attribute.hitDice">
|
||||||
<v-divider
|
<v-divider
|
||||||
v-if="index !== 0"
|
v-if="index !== 0"
|
||||||
:key="hitDie._id + 'divider'"
|
:key="hitDie._id + 'divider'"
|
||||||
|
|||||||
Reference in New Issue
Block a user