diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-06-04 19:50:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 19:50:38 +0200 |
commit | 6077eca240d3dc8765380c99896d85ab6e9c4ea9 (patch) | |
tree | 2ac61fdb20d08c9c2dd8caec146e4dee53aafdde /app/javascript | |
parent | 121d19d7fa239c52ce86352d3fdae0649c892a20 (diff) |
Add profile directory link to single column navigation panel (#10963)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/ui/components/navigation_panel.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/components/navigation_panel.js b/app/javascript/mastodon/features/ui/components/navigation_panel.js index 613be7391..1d783ba1b 100644 --- a/app/javascript/mastodon/features/ui/components/navigation_panel.js +++ b/app/javascript/mastodon/features/ui/components/navigation_panel.js @@ -22,7 +22,8 @@ const NavigationPanel = () => ( <hr /> <a className='column-link column-link--transparent' href='/settings/preferences'><Icon className='column-link__icon' id='cog' fixedWidth /><FormattedMessage id='navigation_bar.preferences' defaultMessage='Preferences' /></a> - <a className='column-link column-link--transparent' href='/relationships'><Icon className='column-link__icon' id='address-book-o' fixedWidth /><FormattedMessage id='navigation_bar.follows_and_followers' defaultMessage='Follows and followers' /></a> + <a className='column-link column-link--transparent' href='/relationships'><Icon className='column-link__icon' id='users' fixedWidth /><FormattedMessage id='navigation_bar.follows_and_followers' defaultMessage='Follows and followers' /></a> + <a className='column-link column-link--transparent' href='/explore'><Icon className='column-link__icon' id='address-book-o' fixedWidth /><FormattedMessage id='navigation_bar.profile_directory' defaultMessage='Profile directory' /></a> </div> ); |