diff --git a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue index c33dc208f..b9608a037 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue @@ -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) {