mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +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
		
	
	
		
			365 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			365 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup>
 | 
						|
defineProps({
 | 
						|
  message: {
 | 
						|
    type: String,
 | 
						|
    required: true,
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="w-full mb-4 flex items-center justify-start">
 | 
						|
    <div
 | 
						|
      v-dompurify-html="message"
 | 
						|
      class="px-4 py-3 bg-white max-w-4xl text-slate-700 leading-6 text-sm rounded-md inline-block border border-slate-100"
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</template>
 |