Hotfix: Adding properties to the tree, type selection fixed

This commit is contained in:
Stefan Zermatten
2021-02-25 19:43:17 +02:00
parent 2a983b0a94
commit bf4ce4f9f7
3 changed files with 6 additions and 2 deletions

View File

@@ -108,6 +108,7 @@
Tree
</v-tab>
</v-tabs>
<v-spacer />
<character-sheet-fab
class="character-sheet-fab"
:edit-permission="editPermission"

View File

@@ -1,5 +1,8 @@
<template lang="html">
<selectable-property-dialog :value="forcedType || type">
<selectable-property-dialog
:value="forcedType || type"
@input="e => type = e"
>
<creature-property-insert-form
:type="forcedType || type"
:property-name="getPropertyName(forcedType || type)"

View File

@@ -8,7 +8,7 @@
<v-toolbar-title slot="toolbar">
Add Library Content
</v-toolbar-title>
<property-selector @select="property => $emit('input', property)" />
<property-selector @select="type => $emit('input', type)" />
</dialog-base>
<div
v-show="value"