Use anchor tag instead of link for org switch

pull/13900/head
Deniz Kusefoglu 2019-05-13 14:52:44 -07:00
parent 184ed7120e
commit 9050582c5a
1 changed files with 3 additions and 3 deletions

View File

@ -75,13 +75,13 @@ class AccountNavSubItem extends PureComponent<Props> {
acc.push(
<NavMenu.SubItem
titleLink={className => (
<Link
<a
className={className}
to={`/orgs/${org.id}`}
href={`/orgs/${org.id}`}
style={{display: 'block'}}
>
{org.name}
</Link>
</a>
)}
key={org.id}
active={false}