mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	fix: Agent avatar instead of bot avatar in pending message (#6777)
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
		| @@ -336,6 +336,12 @@ export default { | ||||
|         this.message.length > this.maxLength | ||||
|       ); | ||||
|     }, | ||||
|     sender() { | ||||
|       return { | ||||
|         name: this.currentUser.name, | ||||
|         thumbnail: this.currentUser.avatar_url, | ||||
|       }; | ||||
|     }, | ||||
|     conversationType() { | ||||
|       const { additional_attributes: additionalAttributes } = this.currentChat; | ||||
|       const type = additionalAttributes ? additionalAttributes.type : ''; | ||||
| @@ -996,6 +1002,7 @@ export default { | ||||
|             files: [attachedFile], | ||||
|             private: false, | ||||
|             message: caption, | ||||
|             sender: this.sender, | ||||
|           }; | ||||
|           multipleMessagePayload.push(attachmentPayload); | ||||
|           caption = ''; | ||||
| @@ -1005,6 +1012,7 @@ export default { | ||||
|           conversationId: this.currentChat.id, | ||||
|           message, | ||||
|           private: false, | ||||
|           sender: this.sender, | ||||
|         }; | ||||
|         multipleMessagePayload.push(messagePayload); | ||||
|       } | ||||
| @@ -1016,6 +1024,7 @@ export default { | ||||
|         conversationId: this.currentChat.id, | ||||
|         message, | ||||
|         private: this.isPrivate, | ||||
|         sender: this.sender, | ||||
|       }; | ||||
|  | ||||
|       if (this.inReplyTo) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Muhsin Keloth
					Muhsin Keloth