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 %>
+
<%= 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 %>
<% if journal.details.any? %>
@@ -14,6 +14,7 @@
<% end %>
<%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %>
+
<%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
<% end %>