mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-25 15:17:02 +00:00
Chore: Contact Sidebar, conversation cleanup (#908)
- Update sidebar design - Move every contact data to contacts module - Revert go to next conversation feature - Fix issues with new conversation in action cable - Escape HTML content - Broadcast event when conversation.contact changes. Co-authored-by: Sojan <sojan@pepalo.com>
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import { escapeHtml } from './HTMLSanitizer';
|
||||
|
||||
class MessageFormatter {
|
||||
constructor(message) {
|
||||
this.message = message || '';
|
||||
this.message = escapeHtml(message) || '';
|
||||
}
|
||||
|
||||
formatMessage() {
|
||||
|
||||
Reference in New Issue
Block a user