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())