diff --git a/app/javascript/dashboard/components-next/message/stories/Bubbles.story.vue b/app/javascript/dashboard/components-next/message/stories/Bubbles.story.vue
index 1f67c9671..12079f6a7 100644
--- a/app/javascript/dashboard/components-next/message/stories/Bubbles.story.vue
+++ b/app/javascript/dashboard/components-next/message/stories/Bubbles.story.vue
@@ -104,12 +104,7 @@ const brokenImageMessage = computed(() =>
const imageMessage = computed(() =>
getMessage({
content: null,
- attachments: [
- getAttachment(
- 'image',
- 'https://images.pexels.com/photos/28506417/pexels-photo-28506417/free-photo-of-motorbike-on-scenic-road-in-surat-thani-thailand.jpeg'
- ),
- ],
+ attachments: [getAttachment('image', 'https://picsum.photos/500/100')],
...baseSenderData.value,
})
);
@@ -135,10 +130,7 @@ const attachmentsOnly = computed(() =>
'video',
'https://videos.pexels.com/video-files/1739010/1739010-hd_1920_1080_30fps.mp4'
),
- getAttachment(
- 'image',
- 'https://images.pexels.com/photos/28506417/pexels-photo-28506417/free-photo-of-motorbike-on-scenic-road-in-surat-thani-thailand.jpeg'
- ),
+ getAttachment('image', 'https://picsum.photos/500/100'),
getAttachment('file', 'https://chatwoot.dev/invoice.pdf'),
getAttachment('file', 'https://chatwoot.dev/logs.txt'),
getAttachment('file', 'https://chatwoot.dev/contacts.xls'),
@@ -231,10 +223,7 @@ const email = computed(() =>
'video',
'https://videos.pexels.com/video-files/1739010/1739010-hd_1920_1080_30fps.mp4'
),
- getAttachment(
- 'image',
- 'https://images.pexels.com/photos/28506417/pexels-photo-28506417/free-photo-of-motorbike-on-scenic-road-in-surat-thani-thailand.jpeg'
- ),
+ getAttachment('image', 'https://picsum.photos/500/100'),
getAttachment('file', 'https://chatwoot.dev/invoice.pdf'),
getAttachment('file', 'https://chatwoot.dev/logs.txt'),
getAttachment('file', 'https://chatwoot.dev/contacts.xls'),
@@ -280,12 +269,9 @@ const unsupported = computed(() =>
const igReel = computed(() =>
getMessage({
content: null,
- attachments: [
- getAttachment(
- 'ig_reel',
- 'https://videos.pexels.com/video-files/2023708/2023708-hd_720_1280_30fps.mp4'
- ),
- ],
+ attachments: [{
+ isUnsupported: true,
+ },]
...baseSenderData.value,
})
);
@@ -296,10 +282,80 @@ const igReel = computed(() =>
title="Components/Messages/Bubbles"
:layout="{ type: 'grid', width: '800px' }"
>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+