From 803196985d77ff7766783d2baaea7e1287bfe9ac Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Sun, 8 Jun 2025 16:42:35 +0530 Subject: [PATCH] fix: allow sending messages with just media files and no text in the editor --- frontend/src/features/conversation/ReplyBoxContent.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/features/conversation/ReplyBoxContent.vue b/frontend/src/features/conversation/ReplyBoxContent.vue index 37f3c8b..f475b6a 100644 --- a/frontend/src/features/conversation/ReplyBoxContent.vue +++ b/frontend/src/features/conversation/ReplyBoxContent.vue @@ -208,7 +208,8 @@ const toggleFullscreen = () => { const enableSend = computed(() => { return ( (textContent.value.trim().length > 0 || - conversationStore.getMacro('reply')?.actions?.length > 0) && + conversationStore.getMacro('reply')?.actions?.length > 0 || + props.uploadedFiles.length > 0) && emailErrors.value.length === 0 && !props.uploadingFiles.length )