From 2751207c68a248d01872e710eaa3155c4d2b73b4 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 15 Jul 2025 17:31:08 +0530 Subject: [PATCH] fix: ignore validation in to, cc & bcc multiselect field in New Email modal --- frappe/public/js/frappe/views/communication.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/public/js/frappe/views/communication.js b/frappe/public/js/frappe/views/communication.js index f5a27fcaa6..22eeae3728 100755 --- a/frappe/public/js/frappe/views/communication.js +++ b/frappe/public/js/frappe/views/communication.js @@ -55,6 +55,7 @@ frappe.views.CommunicationComposer = class { reqd: 0, fieldname: "recipients", default: this.get_default_recipients("recipients"), + ignore_validation: true, onchange: function () { me.sanitize_emails(this); }, @@ -77,6 +78,7 @@ frappe.views.CommunicationComposer = class { fieldtype: "MultiSelect", fieldname: "cc", default: this.get_default_recipients("cc"), + ignore_validation: true, onchange: function () { me.sanitize_emails(this); }, @@ -86,6 +88,7 @@ frappe.views.CommunicationComposer = class { fieldtype: "MultiSelect", fieldname: "bcc", default: this.get_default_recipients("bcc"), + ignore_validation: true, onchange: function () { me.sanitize_emails(this); },