Files
chatwoot/app/javascript/dashboard/components/widgets/conversation/bubble/Text.vue
Nithin David Thomas 3d2db95417 feat: Add preview for attachment messages (#1562)
Add preview for pending messages and attachments

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-01-06 17:56:29 +05:30

25 lines
349 B
Vue

<template>
<div class="message-text__wrap">
<span v-html="message"></span>
</div>
</template>
<script>
export default {
props: {
message: {
type: String,
default: '',
},
readableTime: {
type: String,
default: '',
},
isEmail: {
type: Boolean,
default: true,
},
},
};
</script>