From acaa9a18aeb70b6bfced164662383ddd550d9f9d Mon Sep 17 00:00:00 2001 From: Lightling Date: Fri, 21 Mar 2025 17:45:31 -0400 Subject: [PATCH] fix load issue from undefined templates --- src/views/Home/Home.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/Home/Home.vue b/src/views/Home/Home.vue index 0f694d1..77d4cba 100644 --- a/src/views/Home/Home.vue +++ b/src/views/Home/Home.vue @@ -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')