0
0
Fork 0

Remove navigation links to /explore when trends are disabled (#19415)

* Remove navigation links to /explore when trends are disabled

* Do not display trends interface when trends are disabled
This commit is contained in:
Claire 2022-10-25 19:03:16 +02:00 committed by GitHub
parent 0ca29eaa3f
commit 267978d4fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 4 deletions

View file

@ -95,7 +95,15 @@ class GettingStarted extends ImmutablePureComponent {
navItems.push(
<ColumnSubheading key='header-discover' text={intl.formatMessage(messages.discover)} />,
<ColumnLink key='explore' icon='hashtag' text={intl.formatMessage(messages.explore)} to='/explore' />,
);
if (showTrends) {
navItems.push(
<ColumnLink key='explore' icon='hashtag' text={intl.formatMessage(messages.explore)} to='/explore' />,
);
}
navItems.push(
<ColumnLink key='community_timeline' icon='users' text={intl.formatMessage(messages.community_timeline)} to='/public/local' />,
<ColumnLink key='public_timeline' icon='globe' text={intl.formatMessage(messages.public_timeline)} to='/public' />,
);