Files
chatwoot/app/javascript/dashboard/components-next/message/bubbles/Unsupported.vue
T
2024-12-12 13:25:44 +05:30

10 lines
217 B
Vue

<script setup>
import BaseBubble from './Base.vue';
</script>
<template>
<BaseBubble class="p-3 text-sm" data-bubble-name="unsupported">
{{ $t('CONVERSATION.UNSUPPORTED_MESSAGE') }}
</BaseBubble>
</template>