about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-03-19 13:26:25 -0700
committerGitHub <noreply@github.com>2024-03-19 13:26:25 -0700
commitccf53af2ba1120e423679f5c0803349de4331443 (patch)
treeb67e50345923a09040c1beab9ca0c91e18c6dcf1 /src
parentebf8644df9d677a57e565f1c8b2983e33dab5749 (diff)
downloadvoidsky-ccf53af2ba1120e423679f5c0803349de4331443.tar.zst
Prevent linking to post from an embed in composer (#3275)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/composer/Composer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index ab7551b60..ddb01a8fa 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -447,7 +447,7 @@ export const ComposePost = observer(function ComposePost({
             />
           )}
           {quote ? (
-            <View style={[s.mt5, isWeb && s.mb10]}>
+            <View style={[s.mt5, isWeb && s.mb10, {pointerEvents: 'none'}]}>
               <QuoteEmbed quote={quote} />
             </View>
           ) : undefined}