fix(Automatic Email Linking): double email text getting copied (#7811)
This commit is contained in:
parent
c146095197
commit
7ef2e46a0f
1 changed files with 2 additions and 2 deletions
|
|
@ -74,8 +74,8 @@ frappe.ui.form.Timeline = class Timeline {
|
|||
});
|
||||
});
|
||||
|
||||
this.email_link.on("click", ".copy-to-clipboard", function() {
|
||||
let text = $(".copy-to-clipboard").text();
|
||||
this.email_link.on("click", function(e) {
|
||||
let text = $(e.currentTarget).find(".copy-to-clipboard").text();
|
||||
frappe.utils.copy_to_clipboard(text);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue