Merge pull request #2213 from oxen-io/clearnet

Fix text selection on message text
pull/3064/head
Audric Ackermann 3 years ago committed by GitHub
commit b535ccdd4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,5 +41,5 @@ export const Emojify = (props: Props): JSX.Element => {
default:
}
return <span style={{ fontSize: `${size}em` }}>{rendered}</span>;
return <span style={{ fontSize: `${size}em`, userSelect: 'inherit' }}>{rendered}</span>;
};

Loading…
Cancel
Save