# HG changeset patch # User Marcin Kuzminski # Date 2020-06-23 07:24:21 # Node ID dc3600c49a8623dfb2866217a3cdace2e656c370 # Parent 78745d189eb7bfd63f3fb2d834b30a1c2e1b75b5 comments: updated edit message when body is still the same. diff --git a/rhodecode/public/js/src/rhodecode/comments.js b/rhodecode/public/js/src/rhodecode/comments.js --- a/rhodecode/public/js/src/rhodecode/comments.js +++ b/rhodecode/public/js/src/rhodecode/comments.js @@ -930,8 +930,8 @@ var CommentsController = function() { } if (old_comment_text == text) { SwalNoAnimation.fire({ - title: 'Error', - html: _gettext('Comment body should be changed'), + title: 'Unable to edit comment', + html: _gettext('Comment body was not changed.'), }); return; }