From 769790a768b3993cd3129e823b14910f5616af88 Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Mon, 1 Dec 2025 12:40:15 +0800 Subject: [PATCH] fix: Fix table rendering errors --- ui/src/components/app-table/index.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/src/components/app-table/index.vue b/ui/src/components/app-table/index.vue index 302737e7b..4ce0b6253 100644 --- a/ui/src/components/app-table/index.vue +++ b/ui/src/components/app-table/index.vue @@ -94,9 +94,8 @@ const appTableRef = ref() const loading = ref(false) const showInput = ref(false) const inputValue = ref('') -const tableHeight = ref(300) - -watch(showInput, (bool) => { +const tableHeight = ref(null) +watch(showInput, (bool: boolean) => { if (!bool) { inputValue.value = '' }