diff --git a/app/javascript/dashboard/components-next/message/Message.vue b/app/javascript/dashboard/components-next/message/Message.vue index 3de9d2d04..d738bfcc6 100644 --- a/app/javascript/dashboard/components-next/message/Message.vue +++ b/app/javascript/dashboard/components-next/message/Message.vue @@ -113,6 +113,7 @@ const props = defineProps({ validator: value => Object.values(MESSAGE_STATUS).includes(value), }, attachments: { type: Array, default: () => [] }, + call: { type: Object, default: null }, // eslint-disable-line vue/no-unused-properties content: { type: String, default: null }, contentAttributes: { type: Object, default: () => ({}) }, contentType: { diff --git a/app/javascript/dashboard/components-next/message/bubbles/VoiceCall.vue b/app/javascript/dashboard/components-next/message/bubbles/VoiceCall.vue index 5a7d39a4e..a270882ac 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/VoiceCall.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/VoiceCall.vue @@ -1,7 +1,7 @@