diff options
-rw-r--r-- | app/views/issues/_history.html.erb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/issues/_history.html.erb b/app/views/issues/_history.html.erb index aea0d1e1f..470a55acf 100644 --- a/app/views/issues/_history.html.erb +++ b/app/views/issues/_history.html.erb @@ -1,9 +1,9 @@ <% reply_links = authorize_for('issues', 'edit') -%> <% for journal in journals %> <div id="change-<%= journal.id %>" class="<%= journal.css_classes %>"> + <div id="note-<%= journal.indice %>"> <h4><%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %> <%= avatar(journal.user, :size => "24") %> - <%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4> <% if journal.details.any? %> @@ -14,6 +14,7 @@ </ul> <% end %> <%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %> + </div> </div> <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %> <% end %> |