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()
}
watch(url, () => {
if (url.value.length === 0 || !url.value) {
watch(search, () => {
if (search.value.length === 0 || !search.value) {
searchActive.value = false;
}
})