diff --git a/app/javascript/dashboard/components/widgets/conversation/Message.vue b/app/javascript/dashboard/components/widgets/conversation/Message.vue
index fc80b871c..63ab5643f 100644
--- a/app/javascript/dashboard/components/widgets/conversation/Message.vue
+++ b/app/javascript/dashboard/components/widgets/conversation/Message.vue
@@ -257,7 +257,16 @@ export default {
html_content: { full: fullHTMLContent } = {},
text_content: { full: fullTextContent } = {},
} = this.contentAttributes.email || {};
- return fullHTMLContent || fullTextContent || '';
+
+ if (fullHTMLContent) {
+ return fullHTMLContent;
+ }
+
+ if (fullTextContent) {
+ return fullTextContent.replace(/\n/g, '
');
+ }
+
+ return '';
},
displayQuotedButton() {
if (this.emailMessageContent.includes('