From 514e8168fbad08e70ce12dab587f720b4e91b19e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 3 May 2021 11:22:23 +0200 Subject: [PATCH] Reduce advanced search input debounce time --- client/src/app/core/routing/route-filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/core/routing/route-filter.ts b/client/src/app/core/routing/route-filter.ts index f783a0c40..d2eed7cd4 100644 --- a/client/src/app/core/routing/route-filter.ts +++ b/client/src/app/core/routing/route-filter.ts @@ -18,7 +18,7 @@ export abstract class RouteFilter { this.searchStream .pipe( - debounceTime(400), + debounceTime(200), distinctUntilChanged() ) .subscribe(search => { -- 2.41.0