We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e4975 commit 5b7a49dCopy full SHA for 5b7a49d
docs/working-notes/todo3.md
@@ -502,5 +502,6 @@ https://github.com/sindresorhus/github-markdown-css
502
503
table of contents id links
504
a href open in new tab
505
+fix links page links color for history back view transition
506
------------
507
```
src/components/Header.astro
@@ -69,7 +69,11 @@ const activeNavItemPath = getActiveNavItemPath(routePathname);
69
{
70
NAVIGATION_ITEMS.map(({ title, path }) => (
71
<li>
72
- <HeaderLink href={path} isActive={path === activeNavItemPath}>
+ <HeaderLink
73
+ href={path}
74
+ isActive={path === activeNavItemPath}
75
+ {...(path === ROUTES.LINKS ? { 'data-astro-reload': true } : {})}
76
+ >
77
{title}
78
</HeaderLink>
79
</li>
0 commit comments