fix: Cannot delete message with attachments without content (#6378)

This commit is contained in:
Sivin Varghese
2023-02-03 00:33:19 +05:30
committed by GitHub
parent c9667190f6
commit 84e46adf1c
2 changed files with 21 additions and 15 deletions

View File

@@ -105,7 +105,8 @@
v-if="isBubble && !isMessageDeleted"
:is-open="showContextMenu"
:show-copy="hasText"
:show-canned-response-option="isOutgoing"
:show-delete="hasTextOrAttachment"
:show-canned-response-option="isOutgoing && hasText"
:menu-position="contextMenuPosition"
:message-content="data.content"
@toggle="handleContextMenuClick"
@@ -308,6 +309,9 @@ export default {
hasText() {
return !!this.data.content;
},
hasTextOrAttachment() {
return this.hasText || this.data.attachments.length > 0;
},
tooltipForSender() {
const name = this.senderNameForAvatar;
const { message_type: messageType } = this.data;