From 9de86ea7853d500646a5980ed11dfdd8e41732d8 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 3 May 2026 18:45:09 +0800 Subject: [PATCH] feat(website): append #library-index to tag links on non-index pages Tag clicks on category/other pages now land with the results section scrolled into view. Co-Authored-By: Claude --- website/static/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/main.js b/website/static/main.js index 2a1507ad..d5b337b3 100644 --- a/website/static/main.js +++ b/website/static/main.js @@ -347,7 +347,7 @@ tags.forEach(function (tag) { } applyFilters(); } else if (url) { - window.location.href = url; + window.location.href = url + "#library-index"; } }); });