Replying to @
{replyToStatus.account.acct || replyToStatus.account.username}
@@ -643,7 +643,7 @@ function Compose({
)}
{!!editStatus && (
-
+
Editing source status
)}
diff --git a/src/components/status.jsx b/src/components/status.jsx
index 8494538b..edbed593 100644
--- a/src/components/status.jsx
+++ b/src/components/status.jsx
@@ -70,6 +70,7 @@ function Status({
readOnly,
contentTextWeight,
enableTranslate,
+ previewMode,
}) {
if (skeleton) {
return (
@@ -578,6 +579,7 @@ function Status({
onContextMenu={(e) => {
if (size === 'l') return;
if (e.metaKey) return;
+ if (previewMode) return;
// console.log('context menu', e);
const link = e.target.closest('a');
if (link && /^https?:\/\//.test(link.getAttribute('href'))) return;
@@ -662,7 +664,7 @@ function Status({
)} */}
{/* */}{' '}
{size !== 'l' &&
- (url ? (
+ (url && !previewMode ? (