diff options
author | Hailey <me@haileyok.com> | 2024-03-19 13:26:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 13:26:25 -0700 |
commit | ccf53af2ba1120e423679f5c0803349de4331443 (patch) | |
tree | b67e50345923a09040c1beab9ca0c91e18c6dcf1 /src | |
parent | ebf8644df9d677a57e565f1c8b2983e33dab5749 (diff) | |
download | voidsky-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.tsx | 2 |
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} |