]> cat aescling's git repositories - mastodon.git/commitdiff
Fix #2261 - noopener typo (#2463)
authorEugen Rochko <eugen@zeonfederated.com>
Wed, 26 Apr 2017 01:55:51 +0000 (03:55 +0200)
committerGitHub <noreply@github.com>
Wed, 26 Apr 2017 01:55:51 +0000 (03:55 +0200)
app/assets/javascripts/components/features/status/components/detailed_status.jsx

index 8ab2143723d52119dbeb506e3ec8a45ad3df728f..0e2a7c17e347ce37e366f11e816a1d3dbdd34df1 100644 (file)
@@ -45,7 +45,7 @@ class DetailedStatus extends React.PureComponent {
     }
 
     if (status.get('application')) {
-      applicationLink = <span> · <a className='detailed-status__application' href={status.getIn(['application', 'website'])} target='_blank' rel='nooopener'>{status.getIn(['application', 'name'])}</a></span>;
+      applicationLink = <span> · <a className='detailed-status__application' href={status.getIn(['application', 'website'])} target='_blank' rel='noopener'>{status.getIn(['application', 'name'])}</a></span>;
     }
 
     return (