From ed0dca6820d9df979fae42a43262bbfb01d96fa6 Mon Sep 17 00:00:00 2001 From: Jacky Date: Sat, 16 Nov 2024 10:55:48 +0800 Subject: [PATCH] fix: typecheck error --- app/src/components/StdDesign/StdDataDisplay/StdCurd.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/StdDesign/StdDataDisplay/StdCurd.vue b/app/src/components/StdDesign/StdDataDisplay/StdCurd.vue index bf8612c3..fc30bee5 100644 --- a/app/src/components/StdDesign/StdDataDisplay/StdCurd.vue +++ b/app/src/components/StdDesign/StdDataDisplay/StdCurd.vue @@ -164,8 +164,8 @@ async function handleClickBatchEdit(batchColumns: Column[]) { } function handleBatchUpdated() { - table.value.get_list() - table.value.resetSelection() + table.value?.get_list() + table.value?.resetSelection() }