mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-21 14:31:09 +02:00
undo code style change
This commit is contained in:
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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user