This commit is contained in:
Daniel Haller 2024-04-22 16:48:50 +02:00
parent 4c20387a3f
commit a9341a5877

View File

@ -406,8 +406,8 @@ const handleInputChange = () => {
debounceFetchSearch() debounceFetchSearch()
} }
watch(url, () => { watch(search, () => {
if (url.value.length === 0 || !url.value) { if (search.value.length === 0 || !search.value) {
searchActive.value = false; searchActive.value = false;
} }
}) })