aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/routing
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-05-03 11:22:23 +0200
committerChocobozzz <me@florianbigard.com>2021-05-03 16:42:15 +0200
commit514e8168fbad08e70ce12dab587f720b4e91b19e (patch)
treef76325e329cf0f823ef8015aa0f05d937f133789 /client/src/app/core/routing
parent12e4154917c2a223d1d4b41fb1518bad5ea66f24 (diff)
downloadPeerTube-514e8168fbad08e70ce12dab587f720b4e91b19e.tar.gz
PeerTube-514e8168fbad08e70ce12dab587f720b4e91b19e.tar.zst
PeerTube-514e8168fbad08e70ce12dab587f720b4e91b19e.zip
Reduce advanced search input debounce time
Diffstat (limited to 'client/src/app/core/routing')
-rw-r--r--client/src/app/core/routing/route-filter.ts2
1 files changed, 1 insertions, 1 deletions
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 {
18 18
19 this.searchStream 19 this.searchStream
20 .pipe( 20 .pipe(
21 debounceTime(400), 21 debounceTime(200),
22 distinctUntilChanged() 22 distinctUntilChanged()
23 ) 23 )
24 .subscribe(search => { 24 .subscribe(search => {