Skip to content

Commit

Permalink
Add rel="noopener" to links to remote profiles (mastodon#19014)
Browse files Browse the repository at this point in the history
* Update timeline_hint.js

* Update timeline_hint.js
  • Loading branch information
shleeable authored and kadoshita committed Nov 19, 2022
1 parent e816547 commit dcc847c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/timeline_hint.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const TimelineHint = ({ resource, url }) => (
<div className='timeline-hint'>
<strong><FormattedMessage id='timeline_hint.remote_resource_not_displayed' defaultMessage='{resource} from other servers are not displayed.' values={{ resource }} /></strong>
<br />
<a href={url} target='_blank'><FormattedMessage id='account.browse_more_on_origin_server' defaultMessage='Browse more on the original profile' /></a>
<a href={url} target='_blank' rel='noopener'><FormattedMessage id='account.browse_more_on_origin_server' defaultMessage='Browse more on the original profile' /></a>
</div>
);

Expand Down

0 comments on commit dcc847c

Please sign in to comment.