From 24613b073d6faaa9d9ecd512f504629fbb2de108 Mon Sep 17 00:00:00 2001 From: Nivesh Dandyan Date: Thu, 5 Feb 2026 10:37:14 +0000 Subject: [PATCH 1/7] fix: enable hash link scrolling in README Table of Contents When clicking on hash links within a package's README (such as Table of Contents links), the URL hash would update but the page wouldn't scroll to the target section. This was because the click handler wasn't processing internal anchor links. The fix intercepts clicks on hash links (href starting with #) and uses the existing scrollToAnchor utility to smoothly scroll to the target section with proper header offset handling. Fixes #1008 Co-Authored-By: Claude (claude-opus-4-5) --- app/components/Readme.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/app/components/Readme.vue b/app/components/Readme.vue index 09d2e93e54..c69ee97810 100644 --- a/app/components/Readme.vue +++ b/app/components/Readme.vue @@ -1,4 +1,6 @@