Fixes for origin being string, styling bug hair select and wrong label tags

This commit is contained in:
2024-12-21 17:48:20 +01:00
parent 0e455f8ffc
commit 2c7a1e27be
3 changed files with 5 additions and 5 deletions

View File

@ -18,11 +18,11 @@
<input v-model="objectOriginY" class="input-field" type="number" step="any" name="origin-y" placeholder="Origin Y" />
</div>
<div class="form-field-full">
<label for="origin-x">Tags</label>
<label for="tags">Tags</label>
<ChipsInput v-model="objectTags" @update:modelValue="objectTags = $event" />
</div>
<div class="form-field-full">
<label for="origin-x">Is animated</label>
<label for="is-animated">Is animated</label>
<select v-model="objectIsAnimated" class="input-field" name="is-animated">
<option :value="false">No</option>
<option :value="true">Yes</option>