diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-03 11:22:23 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-03 16:42:15 +0200 |
commit | 514e8168fbad08e70ce12dab587f720b4e91b19e (patch) | |
tree | f76325e329cf0f823ef8015aa0f05d937f133789 /client | |
parent | 12e4154917c2a223d1d4b41fb1518bad5ea66f24 (diff) | |
download | PeerTube-514e8168fbad08e70ce12dab587f720b4e91b19e.tar.gz PeerTube-514e8168fbad08e70ce12dab587f720b4e91b19e.tar.zst PeerTube-514e8168fbad08e70ce12dab587f720b4e91b19e.zip |
Reduce advanced search input debounce time
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/core/routing/route-filter.ts | 2 |
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 => { |