.group-with-next + .message-bubble-container {
.left-bubble {
- @apply rounded-tl-sm;
+ @apply ltr:rounded-tl-sm rtl:rounded-tr-sm;
}
.right-bubble {
- @apply rounded-tr-sm;
+ @apply ltr:rounded-tr-sm rtl:rounded-tl-sm;
}
}
diff --git a/app/javascript/dashboard/components-next/message/MessageError.vue b/app/javascript/dashboard/components-next/message/MessageError.vue
index dca1ae7ff..e113ada71 100644
--- a/app/javascript/dashboard/components-next/message/MessageError.vue
+++ b/app/javascript/dashboard/components-next/message/MessageError.vue
@@ -28,8 +28,8 @@ const { t } = useI18n();
{{ error }}
diff --git a/app/javascript/dashboard/components-next/message/bubbles/Activity.vue b/app/javascript/dashboard/components-next/message/bubbles/Activity.vue
index a34db6460..d52286543 100644
--- a/app/javascript/dashboard/components-next/message/bubbles/Activity.vue
+++ b/app/javascript/dashboard/components-next/message/bubbles/Activity.vue
@@ -13,13 +13,10 @@ const readableTime = computed(() =>
-
-
-
+
diff --git a/app/javascript/dashboard/components-next/message/bubbles/Base.vue b/app/javascript/dashboard/components-next/message/bubbles/Base.vue
index 2c11ccca6..fabec27d5 100644
--- a/app/javascript/dashboard/components-next/message/bubbles/Base.vue
+++ b/app/javascript/dashboard/components-next/message/bubbles/Base.vue
@@ -29,8 +29,10 @@ const varaintBaseMap = {
};
const orientationMap = {
- [ORIENTATION.LEFT]: 'left-bubble rounded-xl rounded-bl-sm',
- [ORIENTATION.RIGHT]: 'right-bubble rounded-xl rounded-br-sm',
+ [ORIENTATION.LEFT]:
+ 'left-bubble rounded-xl ltr:rounded-bl-sm rtl:rounded-br-sm',
+ [ORIENTATION.RIGHT]:
+ 'right-bubble rounded-xl ltr:rounded-br-sm rtl:rounded-bl-sm',
[ORIENTATION.CENTER]: 'rounded-md',
};
diff --git a/app/javascript/dashboard/components-next/message/bubbles/Email/EmailMeta.vue b/app/javascript/dashboard/components-next/message/bubbles/Email/EmailMeta.vue
index 271bd8d9a..e7a00d7e0 100644
--- a/app/javascript/dashboard/components-next/message/bubbles/Email/EmailMeta.vue
+++ b/app/javascript/dashboard/components-next/message/bubbles/Email/EmailMeta.vue
@@ -55,7 +55,7 @@ const showMeta = computed(() => {
diff --git a/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue b/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue
index f7596c865..07f9c92bd 100644
--- a/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue
+++ b/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue
@@ -109,7 +109,10 @@ const textToShow = computed(() => {