Support the HTML tags that are sent for message body. Closes #2717

This commit is contained in:
Gabe Kangas
2023-02-19 15:29:40 -08:00
parent f1ed241a58
commit 12b4452220
3 changed files with 10 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ export const ChatSocialMessage: FC<ChatSocialMessageProps> = ({ message }) => {
</Col>
<Col>
<Row className={styles.account}>{title}</Row>
<Row className={styles.body}>{body}</Row>
<Row className={styles.body} dangerouslySetInnerHTML={{ __html: body }} />
</Col>
</Row>
</a>