0
0
Fork 0

Add sign-up button to logged-out web UI (#19250)

This commit is contained in:
Eugen Rochko 2022-09-29 06:21:51 +02:00 committed by GitHub
parent 43b5d5e38d
commit e623c302d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 43 additions and 4 deletions

View file

@ -56,7 +56,7 @@ class LinkFooter extends React.PureComponent {
items.push(<a key='invites' href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a>);
}
if (withHotkeys) {
if (signedIn && withHotkeys) {
items.push(<Link key='hotkeys' to='/keyboard-shortcuts'><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></Link>);
}