From: Go MAEDA Date: Tue, 26 Dec 2023 08:57:48 +0000 (+0000) Subject: Incorrect position of "Edited" mark in issue notes with h4 headings (#39932). X-Git-Tag: 6.0.0~548 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c6389210ec39c665fe253cf41fbb9c05b9ebadb4;p=redmine.git Incorrect position of "Edited" mark in issue notes with h4 headings (#39932). Contributed by Y. Saku. git-svn-id: https://svn.redmine.org/redmine/trunk@22561 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/journals/update.js.erb b/app/views/journals/update.js.erb index 87320c5d4..227d169fc 100644 --- a/app/views/journals/update.js.erb +++ b/app/views/journals/update.js.erb @@ -7,7 +7,7 @@ $("#journal-<%= @journal.id %>-notes").replaceWith('<%= escape_javascript(render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))) %>'); $("#journal-<%= @journal.id %>-notes").show(); $("#journal-<%= @journal.id %>-form").remove(); - var journal_header = $("#change-<%= @journal.id %> h4"); + var journal_header = $("#change-<%= @journal.id %>>div.note>h4.note-header"); var journal_updated_info = journal_header.find("span.update-info"); if (journal_updated_info.length > 0) { journal_updated_info.replaceWith('<%= escape_javascript(render_journal_update_info(@journal)) %>');