Fixed bug where wrong fab would show on character tab if spell tab was hidden
This commit is contained in:
@@ -51,7 +51,7 @@
|
||||
<v-tab-item>
|
||||
<inventory-tab :creature-id="creatureId" />
|
||||
</v-tab-item>
|
||||
<v-tab-item v-if="!creature.settings.hideSpellsTab">
|
||||
<v-tab-item v-show="!creature.settings.hideSpellsTab">
|
||||
<spells-tab :creature-id="creatureId" />
|
||||
</v-tab-item>
|
||||
<v-tab-item>
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
<v-tab>
|
||||
Inventory
|
||||
</v-tab>
|
||||
<v-tab v-if="!creature.settings.hideSpellsTab">
|
||||
<v-tab v-show="!creature.settings.hideSpellsTab">
|
||||
Spells
|
||||
</v-tab>
|
||||
<v-tab>
|
||||
|
||||
Reference in New Issue
Block a user