Merge commit '5e1752ce3f' into kb_migration

This commit is contained in:
KMY 2023-07-07 07:21:46 +09:00
commit fc87e18044
8 changed files with 34 additions and 8 deletions

View file

@ -482,6 +482,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

@ -764,6 +764,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>
);