[Enhancement] Format messages in widget (#268)
* Use message formatter in widget * Rename the variable
This commit is contained in:
parent
c96e2c334c
commit
c6feea9f6d
6 changed files with 66 additions and 17 deletions
|
@ -1,12 +1,13 @@
|
|||
<template>
|
||||
<div class="chat-bubble agent">
|
||||
{{ message }}
|
||||
</div>
|
||||
<div class="chat-bubble agent" v-html="formatMessage(message)"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
|
||||
|
||||
export default {
|
||||
name: 'AgentMessageBubble',
|
||||
mixins: [messageFormatterMixin],
|
||||
props: {
|
||||
message: String,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue