mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			720 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			720 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    class="my-0 mx-4 px-1 flex max-h-[8vh] items-baseline justify-between hover:bg-slate-25 dark:hover:bg-slate-800 border border-dashed border-slate-100 dark:border-slate-700 rounded-sm overflow-auto"
 | 
						|
  >
 | 
						|
    <p class="w-fit !m-0">
 | 
						|
      {{ $t('CONVERSATION.FOOTER.MESSAGE_SIGNATURE_NOT_CONFIGURED') }}
 | 
						|
      <woot-button
 | 
						|
        color-scheme="primary"
 | 
						|
        variant="link"
 | 
						|
        @click="openProfileSettings"
 | 
						|
      >
 | 
						|
        {{ $t('CONVERSATION.FOOTER.CLICK_HERE') }}
 | 
						|
      </woot-button>
 | 
						|
    </p>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  methods: {
 | 
						|
    openProfileSettings() {
 | 
						|
      return this.$router.push({ name: 'profile_settings_index' });
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style></style>
 |