Browse Source

Changed not to display DISCOVER subheader via single column layout. (#9759)

pull/4/head
mayaeh 5 years ago
committed by Eugen Rochko
parent
commit
266d4cb92b
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      app/javascript/mastodon/features/getting_started/index.js

+ 3
- 4
app/javascript/mastodon/features/getting_started/index.js View File

@ -94,7 +94,7 @@ class GettingStarted extends ImmutablePureComponent {
if (profile_directory) {
navItems.push(
<ColumnLink key={i++} icon='address-book' text={intl.formatMessage(messages.profile_directory)} href='/explore' />,
<ColumnLink key={i++} icon='address-book' text={intl.formatMessage(messages.profile_directory)} href='/explore' />
);
height += 48;
@ -107,11 +107,10 @@ class GettingStarted extends ImmutablePureComponent {
height += 34;
} else if (profile_directory) {
navItems.push(
<ColumnSubheading key={i++} text={intl.formatMessage(messages.discover)} />,
<ColumnLink key={i++} icon='address-book' text={intl.formatMessage(messages.profile_directory)} href='/explore' />,
<ColumnLink key={i++} icon='address-book' text={intl.formatMessage(messages.profile_directory)} href='/explore' />
);
height += 34 + 48;
height += 48;
}
navItems.push(

Loading…
Cancel
Save