From 0f7c9a791956eccef8ddb54b25d8a2b15c1bd1be Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 12 Dec 2022 16:46:29 -0500 Subject: [PATCH] fix(glance-nav): use debounce instead of throttle --- public/src/client/topic/glance.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/client/topic/glance.js b/public/src/client/topic/glance.js index 6c2dae21a2..db721485d2 100644 --- a/public/src/client/topic/glance.js +++ b/public/src/client/topic/glance.js @@ -76,7 +76,7 @@ function enableHandle() { return; } - const tUpdateHandleText = utils.throttle(updateHandleText, 250); + const tUpdateHandleText = utils.debounce(updateHandleText, 250); toggle(true); active = true;