Commit 0f33f752 authored by Mark Harding's avatar Mark Harding

(chore): reduce 100ms to 30ms for scroll subscription debounce

No related merge requests found
Pipeline #79390577 waiting for delayed job with stages
in 51 minutes and 21 seconds
......@@ -73,7 +73,7 @@ export class GlobalScrollService {
const viewEmitter: EventEmitter<any> = new EventEmitter<any>();
if (!subscription.viewListener) {
subscription.viewListener = subscription.scrollEvent
.pipe(debounceTime(100)) // wait 100ms before triggering
.pipe(debounceTime(30)) // wait 30ms before triggering
.subscribe(e => {
viewEmitter.next(e);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment