diff --git a/app/javascript/dashboard/components-next/message/bubbles/Text.vue b/app/javascript/dashboard/components-next/message/bubbles/Text.vue
index cc2c42236..4371ce264 100644
--- a/app/javascript/dashboard/components-next/message/bubbles/Text.vue
+++ b/app/javascript/dashboard/components-next/message/bubbles/Text.vue
@@ -39,7 +39,7 @@ const orientationMap = {
const messageClass = computed(() => {
const classToApply = [varaintBaseMap[props.variant]];
- if (props.variant !== 'system') {
+ if (props.variant !== MESSAGE_VARIANTS.ACTIVITY) {
classToApply.push(orientationMap[props.orientation]);
} else {
classToApply.push('rounded-lg');
@@ -49,6 +49,10 @@ const messageClass = computed(() => {
});
const formattedContent = computed(() => {
+ if (props.variant === MESSAGE_VARIANTS.ACTIVITY) {
+ return props.content;
+ }
+
return new MessageFormatter(props.content).formattedMessage;
});
@@ -58,3 +62,9 @@ const formattedContent = computed(() => {
+
+