Merge pull request #2212 from Bilb/fix-selection-text-message

fix text selection on text
pull/2213/head
Audric Ackermann 3 years ago committed by GitHub
commit 3a83b60be4
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