You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
undo code style change
This commit is contained in:
committed by
GitHub
parent
5f920f729b
commit
0f11bc62cc
@@ -479,11 +479,9 @@ export function bodyToHtml(content, highlights, opts={}) {
|
||||
'markdown-body': isHtml,
|
||||
});
|
||||
|
||||
if (isHtml) {
|
||||
return <span className={className} dangerouslySetInnerHTML={{ __html: safeBody }} dir="auto" />;
|
||||
}
|
||||
|
||||
return <span className={className} dir="auto">{ strippedBody }</span>;
|
||||
return isHtml ?
|
||||
<span className={className} dangerouslySetInnerHTML={{ __html: safeBody }} dir="auto" /> :
|
||||
<span className={className} dir="auto">{ strippedBody }</span>;
|
||||
}
|
||||
|
||||
export function emojifyText(text) {
|
||||
|
||||
Reference in New Issue
Block a user