Skip to content

Commit 7ad26fc

Browse files
authored
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.
1 parent cd35727 commit 7ad26fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/scripts/components/NavigationBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default () => {
6363
<FontAwesomeIcon icon={faUserCircle}/>
6464
</NavLink>
6565
{rootAdmin &&
66-
<a href={'/admin'} target={'_blank'} rel={'noreferrer'}>
66+
<a href={'/admin'} rel={'noreferrer'}>
6767
<FontAwesomeIcon icon={faCogs}/>
6868
</a>
6969
}

0 commit comments

Comments
 (0)