We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b76f0fe commit 3fde4a0Copy full SHA for 3fde4a0
packages/docusaurus-theme-classic/src/theme/NavbarItem/DropdownNavbarItem/index.tsx
@@ -151,6 +151,10 @@ function DropdownNavbarItemMobile({
151
'menu__link menu__link--sublist menu__link--sublist-caret',
152
className,
153
)}
154
+ // # hash permits to make the <a> tag focusable in case no link target
155
+ // See https://github.com/facebook/docusaurus/pull/6003
156
+ // There's probably a better solution though...
157
+ href={props.to ? undefined : '#'}
158
{...props}
159
onClick={(e) => {
160
e.preventDefault();
0 commit comments