diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-18 21:21:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 21:21:20 +0200 |
commit | 4adb267f9177f6036f8f27cd37544c54b97f3dd2 (patch) | |
tree | 791395f8de6de8a657a0bdac29d8a33e291baa80 | |
parent | 9c7f4ab8e8d19d29a5b9367ebaec8fc8af70ab7f (diff) |
Fix showing translate button when status has no language in web UI (#19388)
-rw-r--r-- | app/javascript/mastodon/components/status_content.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/status_content.js b/app/javascript/mastodon/components/status_content.js index a88c5f084..6ad3e018a 100644 --- a/app/javascript/mastodon/components/status_content.js +++ b/app/javascript/mastodon/components/status_content.js @@ -181,7 +181,7 @@ class StatusContent extends React.PureComponent { const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden; const renderReadMore = this.props.onClick && status.get('collapsed'); const renderViewThread = this.props.showThread && status.get('in_reply_to_id') && status.get('in_reply_to_account_id') === status.getIn(['account', 'id']); - const renderTranslate = this.context.identity.signedIn && this.props.onTranslate && ['public', 'unlisted'].includes(status.get('visibility')) && status.get('contentHtml').length > 0 && intl.locale !== status.get('language'); + const renderTranslate = this.context.identity.signedIn && this.props.onTranslate && ['public', 'unlisted'].includes(status.get('visibility')) && status.get('contentHtml').length > 0 && status.get('language') !== null && intl.locale !== status.get('language'); const language = preloadedLanguages.find(lang => lang[0] === status.get('language')); const languageName = language ? language[2] : status.get('language'); |