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:
Muhsin Keloth
2023-03-31 18:49:31 +05:30
committed by GitHub
parent fd41529b82
commit bd5ff7a8bf

View File

@@ -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) {