fix load issue from undefined templates

This commit is contained in:
lightling 2025-03-21 17:45:31 -04:00
parent de44186164
commit acaa9a18ae
Signed by: lightling
GPG key ID: F1F29650D537C773

View file

@ -87,6 +87,9 @@ const onFind = async (e: Event) => {
}
if (!!json.columns && !!json.rows) {
if (!json.templates) {
json.templates = []
}
appStore.currentInventory.data = json
appStore.currentInventory.filePath = val
router.push('/editor')