noopener noreferrer all the links
This commit is contained in:
parent
cb04659ab1
commit
eeb89212d2
|
@ -209,7 +209,11 @@ function AccountInfo({
|
|||
<div class="ui-state">
|
||||
<p>Unable to load account.</p>
|
||||
<p>
|
||||
<a href={account} target="_blank">
|
||||
<a
|
||||
href={isString ? account : url}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Go to account page <Icon icon="external" />
|
||||
</a>
|
||||
</p>
|
||||
|
|
|
@ -1303,7 +1303,7 @@ function Status({
|
|||
icon={visibilityIconsMap[visibility]}
|
||||
alt={visibilityText[visibility]}
|
||||
/>{' '}
|
||||
<a href={url} target="_blank">
|
||||
<a href={url} target="_blank" rel="noopener noreferrer">
|
||||
<time
|
||||
class="created"
|
||||
datetime={createdAtDate.toISOString()}
|
||||
|
|
|
@ -30,7 +30,7 @@ export default function HttpRoute() {
|
|||
<>
|
||||
<h2>Unable to process URL</h2>
|
||||
<p>
|
||||
<a href={url} target="_blank">
|
||||
<a href={url} target="_blank" rel="noopener noreferrer">
|
||||
{url}
|
||||
</a>
|
||||
</p>
|
||||
|
|
|
@ -443,7 +443,11 @@ function Settings({ onClose }) {
|
|||
@phanpy
|
||||
</a>
|
||||
<br />
|
||||
<a href="https://github.com/cheeaun/phanpy" target="_blank">
|
||||
<a
|
||||
href="https://github.com/cheeaun/phanpy"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Built
|
||||
</a>{' '}
|
||||
by{' '}
|
||||
|
|
Loading…
Reference in a new issue