Remove target="blank" from /admin link

This should be changed to make it consistent with the admin panel, where the link back to the user panel does not open in a new tab.
This commit is contained in:
Anders G. Jørgensen
2020-10-16 15:49:35 +02:00
committed by GitHub
parent cd3572730b
commit 7ad26fc456

View File

@@ -63,7 +63,7 @@ export default () => {
<FontAwesomeIcon icon={faUserCircle}/>
</NavLink>
{rootAdmin &&
<a href={'/admin'} target={'_blank'} rel={'noreferrer'}>
<a href={'/admin'} rel={'noreferrer'}>
<FontAwesomeIcon icon={faCogs}/>
</a>
}