diff --git a/frontend/src/components/CommunicationArea.vue b/frontend/src/components/CommunicationArea.vue index d262a3de..008c54e5 100644 --- a/frontend/src/components/CommunicationArea.vue +++ b/frontend/src/components/CommunicationArea.vue @@ -175,7 +175,11 @@ const commentEmpty = computed(() => { }) const emailEmpty = computed(() => { - return !newEmail.value || newEmail.value === '

' + return ( + !newEmail.value || + newEmail.value === '

' || + !newEmailEditor.value?.toEmails?.length + ) }) async function sendMail() {