[Fix] Email not sent when click on send in email prompt (#5092)
This commit is contained in:
parent
59eb4bb99e
commit
dbd93a3779
1 changed files with 1 additions and 1 deletions
|
|
@ -554,7 +554,7 @@ frappe.views.CommunicationComposer = Class.extend({
|
|||
},
|
||||
|
||||
is_print_letterhead_checked: function() {
|
||||
if($(this.frm.wrapper).find('.form-print-wrapper').is(':visible')){
|
||||
if (this.frm && $(this.frm.wrapper).find('.form-print-wrapper').is(':visible')){
|
||||
return $(this.frm.wrapper).find('.print-letterhead').prop('checked');
|
||||
} else {
|
||||
return (frappe.model.get_doc(":Print Settings", "Print Settings") ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue