From 5882228b9704b51259a7af05c50210c0f6e52f0f Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 14 Mar 2023 14:11:40 +0800 Subject: [PATCH] Hide interaction menu items for non-same-instance statuses --- src/components/status.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index af1c9ae6..51ec51eb 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -399,7 +399,7 @@ function Status({ )} {(!isSizeLarge || !!editedAt) && } - {!isSizeLarge && ( + {!isSizeLarge && sameInstance && ( <> @@ -471,7 +471,7 @@ function Status({ Translate )} - {(!isSizeLarge || enableTranslate) && } + {((!isSizeLarge && sameInstance) || enableTranslate) && } {nicePostURL(url)}