Skip to content
Snippets Groups Projects
Unverified Commit 1fac99e8 authored by Shlee's avatar Shlee Committed by GitHub
Browse files

Add rel="noopener" to links to remote profiles (#19014)

* Update timeline_hint.js

* Update timeline_hint.js
parent 1d84cbea
No related branches found
No related tags found
No related merge requests found
......@@ -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>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment