Skip to content

Commit

Permalink
Fixed #9412 - Wrong email value displayed when aborting an inline edi…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
SinergiaCRM committed Feb 25, 2022
1 parent d57e913 commit bf919a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/InlineEditing/inlineEditing.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ $(document).on("click", function(e) {
) + " " + message_field
);
if (r == true) {
var output = setValueClose(output_value);
// Fix #9412 - Wrong email value displayed when aborting an inline edition
var output = setValueClose(output_value, false);
clickListenerActive = false;
} else {
$("#" + field).focus();
Expand Down

0 comments on commit bf919a4

Please sign in to comment.