mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	These fixes are all auto generated and can be merged directly Fixes the following issues 1. Event used on components should be hypenated 2. Attribute orders in components 3. Use `unmounted` instead of `destroyed` 4. Add explicit `emits` declarations for components, autofixed [using this script](https://gist.github.com/scmmishra/6f549109b96400006bb69bbde392eddf) We ignore the top level v-if for now, we will fix it later
		
			
				
	
	
		
			33 lines
		
	
	
		
			735 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			735 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script>
 | 
						|
import { getInboxClassByType } from 'dashboard/helper/inbox';
 | 
						|
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    inbox: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    computedInboxClass() {
 | 
						|
      const { phone_number: phoneNumber, channel_type: type } = this.inbox;
 | 
						|
      const classByType = getInboxClassByType(type, phoneNumber);
 | 
						|
      return classByType;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div
 | 
						|
    class="inbox--name inline-flex items-center py-0.5 px-0 leading-3 whitespace-nowrap bg-none text-slate-600 dark:text-slate-500 text-xs my-0 mx-2.5"
 | 
						|
  >
 | 
						|
    <fluent-icon
 | 
						|
      class="mr-0.5 rtl:ml-0.5 rtl:mr-0"
 | 
						|
      :icon="computedInboxClass"
 | 
						|
      size="12"
 | 
						|
    />
 | 
						|
    {{ inbox.name }}
 | 
						|
  </div>
 | 
						|
</template>
 |