mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
- This PR adds a UI to validate the response source quality quickly. It also helps to test with sample questions and update responses in the database when missing. Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
18 lines
318 B
Vue
18 lines
318 B
Vue
<script setup>
|
|
defineProps({
|
|
message: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full mb-4 flex items-center justify-end">
|
|
<div
|
|
v-dompurify-html="message"
|
|
class="px-4 py-3 bg-woot-400 text-white text-sm rounded-md inline-block"
|
|
/>
|
|
</div>
|
|
</template>
|