update track interface to follow server updates

+ add search debounce time
This commit is contained in:
geoffrey45
2022-09-11 20:37:29 +03:00
parent 47fc7fd705
commit f5b6791d4b
14 changed files with 50 additions and 43 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ function scrollOnLoad() {
export default defineStore("search", () => {
// @ts-ignore
const query = ref("");
const debouncedQuery = useDebounce(query);
const debouncedQuery = useDebounce(query, 500);
const { startLoading, stopLoading } = useLoaderStore();
const route = useRoute();