From f4f9ac0cb4365b307f4e3f65385530e22af9c1bc Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Mon, 30 Sep 2024 11:15:38 +0200 Subject: [PATCH] remove html characters in preview --- freedata_gui/src/components/chat_conversations.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/freedata_gui/src/components/chat_conversations.vue b/freedata_gui/src/components/chat_conversations.vue index 5bc95f3b8..83731eaa2 100644 --- a/freedata_gui/src/components/chat_conversations.vue +++ b/freedata_gui/src/components/chat_conversations.vue @@ -35,7 +35,7 @@ {{ details.unread_messages }} new
- {{ details.body ? details.body : '' }} + {{ sanitizeBody(details.body) || '' }}
{{ getDateTime(details.timestamp) }} @@ -48,6 +48,7 @@