#78 : Fixed chipsInput component

This commit is contained in:
2024-09-08 15:08:18 +02:00
parent 50ae61bcb7
commit 7c4f626c5a
3 changed files with 39 additions and 17 deletions

View File

@ -65,7 +65,7 @@ const zoneEditorStore = useZoneEditorStore()
const selectedObject = computed(() => assetManagerStore.selectedObject)
const objectName = ref('')
const objectTags = ref([] as string[])
const objectTags = ref<string[]>([])
const objectOriginX = ref(0)
const objectOriginY = ref(0)
const objectIsAnimated = ref(false)

View File

@ -38,7 +38,7 @@ const zoneEditorStore = useZoneEditorStore()
const selectedTile = computed(() => assetManagerStore.selectedTile)
const tileName = ref('')
const tileTags = ref()
const tileTags = ref<string[]>([])
if (!selectedTile.value) {
console.error('No tile selected')