mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 09:59:59 +00:00
fix: prevent empty search keyword to send invalid request (#2676)
This commit is contained in:
parent
0fd9374e8c
commit
dfbe2e080d
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export function useSearch(query: MaybeRefOrGetter<string>, options: UseSearchOpt
|
|||
})
|
||||
|
||||
debouncedWatch(() => resolveUnref(query), async () => {
|
||||
if (!q || !isHydrated.value)
|
||||
if (!q.value || !isHydrated.value)
|
||||
return
|
||||
|
||||
loading.value = true
|
||||
|
|
Loading…
Reference in a new issue