]> cat aescling's git repositories - mastodon.git/commitdiff
Change links in right panel to open in the same tab (#10848)
authorEugen Rochko <eugen@zeonfederated.com>
Wed, 29 May 2019 14:33:35 +0000 (17:33 +0300)
committerGitHub <noreply@github.com>
Wed, 29 May 2019 14:33:35 +0000 (17:33 +0300)
For Rambox compatibility

app/javascript/mastodon/features/ui/components/navigation_panel.js

index 1fd28c63ada8dc00b9d959c957a38f0f95d37209..613be7391b68089d6aebad97271b125d0aa5979f 100644 (file)
@@ -21,8 +21,8 @@ const NavigationPanel = () => (
 
     <hr />
 
-    <a className='column-link column-link--transparent' href='/settings/preferences' target='_blank'><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' target='_blank'><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='/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>
   </div>
 );