From fc85901a46af3a37ca3c15ef4d78643a40ddc18c Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 11 Dec 2023 17:34:25 -0600 Subject: Fix links in profiles (#2178) * Resolve links in profile bios * Improve solution * On mobile, dont disable pointer events on the bio richtext --------- Co-authored-by: Paul Frazee --- src/view/com/util/text/RichText.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/view/com/util/text/RichText.tsx') diff --git a/src/view/com/util/text/RichText.tsx b/src/view/com/util/text/RichText.tsx index b414baed9..99062e848 100644 --- a/src/view/com/util/text/RichText.tsx +++ b/src/view/com/util/text/RichText.tsx @@ -77,7 +77,7 @@ export function RichText({ type={type} text={segment.text} href={`/profile/${mention.did}`} - style={[style, lineHeightStyle, pal.link]} + style={[style, lineHeightStyle, pal.link, {pointerEvents: 'auto'}]} dataSet={WORD_WRAP} />, ) @@ -88,7 +88,7 @@ export function RichText({ type={type} text={toShortUrl(segment.text)} href={link.uri} - style={[style, lineHeightStyle, pal.link]} + style={[style, lineHeightStyle, pal.link, {pointerEvents: 'auto'}]} dataSet={WORD_WRAP} warnOnMismatchingLabel />, -- cgit 1.4.1