added lots of animations, added debounce to search query, fixed faulty refetching when logging out from profile page

This commit is contained in:
Sockenklaus
2021-11-14 11:20:01 +01:00
parent a92342d445
commit 0d00d73eb4
11 changed files with 174 additions and 118 deletions

View File

@@ -23,7 +23,7 @@ export const useNotifications = defineStore('notifications', {
text:text,
}
)
if (timeout !== -1) setTimeout(() => this.remove(id), timeout)
if (timeout > -1) setTimeout(() => this.remove(id), timeout)
}
}
})