Skip to content

Commit 769790a

Browse files
fix: Fix table rendering errors
1 parent 9e3b16c commit 769790a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ui/src/components/app-table/index.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,8 @@ const appTableRef = ref()
9494
const loading = ref(false)
9595
const showInput = ref(false)
9696
const inputValue = ref('')
97-
const tableHeight = ref(300)
98-
99-
watch(showInput, (bool) => {
97+
const tableHeight = ref(null)
98+
watch(showInput, (bool: boolean) => {
10099
if (!bool) {
101100
inputValue.value = ''
102101
}

0 commit comments

Comments
 (0)