mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	fix: Use default from attribute if undefined (#3977)
This commit is contained in:
		@@ -51,7 +51,7 @@ export default {
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  computed: {
 | 
					  computed: {
 | 
				
			||||||
    fromMail() {
 | 
					    fromMail() {
 | 
				
			||||||
      const from = this.emailAttributes.from;
 | 
					      const from = this.emailAttributes.from || [];
 | 
				
			||||||
      return from.join(', ');
 | 
					      return from.join(', ');
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    toMails() {
 | 
					    toMails() {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user