#78 : Fixed chipsInput component
This commit is contained in:
@ -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)
|
||||
|
@ -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')
|
||||
|
Reference in New Issue
Block a user