Update quotes to render emoji just like normal messages
This commit is contained in:
parent
a7d44d3344
commit
21713cbce7
5 changed files with 52 additions and 8 deletions
|
@ -113,7 +113,7 @@ export class Quote extends React.Component<Props, {}> {
|
|||
const { i18n, text, attachments } = this.props;
|
||||
|
||||
if (text) {
|
||||
return <div className="text">{text}</div>;
|
||||
return <div className="text" dangerouslySetInnerHTML={{ __html: text}} />;
|
||||
}
|
||||
|
||||
if (!attachments || attachments.length === 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue