Skip to content

Commit

Permalink
Make "Marketplace" menu item focusable via keyboard (#5044)
Browse files Browse the repository at this point in the history
  • Loading branch information
codeiotic committed Nov 5, 2021
1 parent 79adc57 commit 4d7d591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/features/deprioritize-marketplace-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async function init(): Promise<void> {
await onProfileDropdownLoad();
select.last('.header-nav-current-user ~ .dropdown-divider')!.before(
<div className="dropdown-divider"/>,
<a className="dropdown-item" href="/marketplace">Marketplace</a>,
<a role="menuitem" className="dropdown-item" href="/marketplace">Marketplace</a>,
);
}
}
Expand Down

0 comments on commit 4d7d591

Please sign in to comment.