diff --git a/app/javascript/dashboard/components-next/message/bubbles/Email.vue b/app/javascript/dashboard/components-next/message/bubbles/Email.vue index a61d95d6d..4016b2f52 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Email.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Email.vue @@ -54,7 +54,9 @@ const contentToShow = computed(() => { }); const textToShow = computed(() => { - return props.contentAttributes?.email?.textContent?.full ?? props.content; + const text = + props.contentAttributes?.email?.textContent?.full ?? props.content; + return text.replace(/\n/g, '
'); }); const fromEmail = computed(() => {