Browse Source

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
pull/145/merge
Go MAEDA 5 months ago
parent
commit
c6389210ec
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/views/journals/update.js.erb

+ 1
- 1
app/views/journals/update.js.erb View File

@@ -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)) %>');

Loading…
Cancel
Save