Fixed error reporting
This commit is contained in:
parent
6f2e299883
commit
ea8d50b9ec
1 changed files with 5 additions and 1 deletions
|
|
@ -247,7 +247,11 @@ frappe.request.report_error = function(xhr, request_opts) {
|
|||
var communication_composer = new frappe.views.CommunicationComposer({
|
||||
subject: 'Error Report',
|
||||
recipients: error_report_email,
|
||||
message: error_report_message
|
||||
message: error_report_message,
|
||||
doc: {
|
||||
doctype: "User",
|
||||
name: user
|
||||
}
|
||||
});
|
||||
communication_composer.dialog.$wrapper.css("z-index", cint(msg_dialog.$wrapper.css("z-index")) + 1);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue