mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: Fix table rendering errors
This commit is contained in:
parent
9e3b16c3ce
commit
769790a768
|
|
@ -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 = ''
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue