Moved ammo to its own pseudo property

Triggers now work on ammo
#amo now works as well
This commit is contained in:
Thaum Rystra
2023-09-20 14:03:37 +02:00
parent 3a3deca867
commit d3c533dfa1
6 changed files with 94 additions and 43 deletions

View File

@@ -84,12 +84,30 @@
<form-section
name="Behavior"
>
<smart-switch
label="Show increment button"
:value="model.showIncrement"
:error-messages="errors.showIncrement"
@change="change('showIncrement', ...arguments)"
/>
<v-row dense>
<v-col
cols="12"
md="6"
>
<smart-switch
label="Show increment button"
:value="model.showIncrement"
:error-messages="errors.showIncrement"
@change="change('showIncrement', ...arguments)"
/>
</v-col>
<v-col
cols="12"
md="6"
>
<smart-switch
label="Don't show in log"
:value="model.silent"
:error-messages="errors.silent"
@change="change('silent', ...arguments)"
/>
</v-col>
</v-row>
</form-section>
<form-section
name="Attunement"