Add canonical link tags in web UI (#25715)

Eugen Rochko 2023-07-05 11:25:27 +02:00 committed by Rin
parent e749599432
commit b21fe63102
Signed by: Rin
GPG Key ID: 0C8733C13A7E1293
2 changed files with 2 additions and 0 deletions

View File

@ -476,6 +476,7 @@ class Header extends ImmutablePureComponent {
<Helmet>
<title>{titleFromAccount(account)}</title>
<meta name='robots' content={(isLocal && isIndexable) ? 'all' : 'noindex'} />
<link rel='canonical' href={account.get('url')} />
</Helmet>
</div>
);

View File

@ -716,6 +716,7 @@ class Status extends ImmutablePureComponent {
<Helmet>
<title>{titleFromStatus(intl, status)}</title>
<meta name='robots' content={(isLocal && isIndexable) ? 'all' : 'noindex'} />
<link rel='canonical' href={status.get('url')} />
</Helmet>
</Column>
);