From fa2435388a6936b7f6e1085fbf34e528c52dc716 Mon Sep 17 00:00:00 2001 From: kevinBell Date: Mon, 27 Jul 2026 14:44:17 -0600 Subject: [PATCH] clicking a tab no longer auto-scrolls --- dashboard/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/js/app.js b/dashboard/js/app.js index d43d45f..8a0ffbe 100644 --- a/dashboard/js/app.js +++ b/dashboard/js/app.js @@ -86,8 +86,8 @@ function showRoute({ announce = true, focus = false } = {}) { if (heading) { heading.setAttribute("tabindex", "-1"); heading.focus({ preventScroll: true }); - heading.scrollIntoView({ behavior: "smooth", block: "start" }); } + window.scrollTo({ top: 0, left: 0, behavior: "instant" }); } }