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:
parent
cd3572730b
commit
7ad26fc456
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export default () => {
|
||||||
<FontAwesomeIcon icon={faUserCircle}/>
|
<FontAwesomeIcon icon={faUserCircle}/>
|
||||||
</NavLink>
|
</NavLink>
|
||||||
{rootAdmin &&
|
{rootAdmin &&
|
||||||
<a href={'/admin'} target={'_blank'} rel={'noreferrer'}>
|
<a href={'/admin'} rel={'noreferrer'}>
|
||||||
<FontAwesomeIcon icon={faCogs}/>
|
<FontAwesomeIcon icon={faCogs}/>
|
||||||
</a>
|
</a>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue