From 35c1d841d00caa0758c045e16868bb843718f56b Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 26 Dec 2023 20:33:35 +0530 Subject: [PATCH] fix: clear cc & bcc before setting it --- frontend/src/components/Activities.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Activities.vue b/frontend/src/components/Activities.vue index 9ec46bd5..c23b5f05 100644 --- a/frontend/src/components/Activities.vue +++ b/frontend/src/components/Activities.vue @@ -383,7 +383,7 @@ -
+
TO: {{ activity.data.recipients }} , @@ -1022,6 +1022,8 @@ function reply(email, reply_all = false) { let recipients = email.recipients.split(',').map((r) => r.trim()) editor.toEmails = recipients editor.cc = editor.bcc = false + editor.ccEmails = [] + editor.bccEmails = [] if (reply_all) { let cc = email.cc?.split(',').map((r) => r.trim())