diff --git a/src/ui/url_hash_binding.ts b/src/ui/url_hash_binding.ts index 48d6e4009..5c338cb5e 100644 --- a/src/ui/url_hash_binding.ts +++ b/src/ui/url_hash_binding.ts @@ -82,6 +82,7 @@ export class UrlHashBinding extends RefCounted { const throttledSetUrlHash = debounce( () => this.setUrlHash(), updateDelayMilliseconds, + { maxWait: updateDelayMilliseconds * 2 }, ); this.registerDisposer(root.changed.add(throttledSetUrlHash)); this.registerDisposer(() => throttledSetUrlHash.cancel());