diff options
Diffstat (limited to 'app/views/repositories/annotate.html.erb')
-rw-r--r-- | app/views/repositories/annotate.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/repositories/annotate.html.erb b/app/views/repositories/annotate.html.erb index 1c4df65c4..ab9628e69 100644 --- a/app/views/repositories/annotate.html.erb +++ b/app/views/repositories/annotate.html.erb @@ -16,8 +16,8 @@ <% line_num = 1; previous_revision = nil %> <% syntax_highlight_lines(@path, Redmine::CodesetUtil.to_utf8_by_setting(@annotate.content)).each do |line| %> <% revision = @annotate.revisions[line_num - 1] %> - <tr class="bloc-<%= revision.nil? ? 0 : colors[revision.identifier || revision.revision] %>"> - <th class="line-num" id="L<%= line_num %>"><a href="#L<%= line_num %>"><%= line_num %></a></th> + <tr id="L<%= line_num %>" class="bloc-<%= revision.nil? ? 0 : colors[revision.identifier || revision.revision] %>"> + <th class="line-num"><a href="#L<%= line_num %>"><%= line_num %></a></th> <td class="revision"> <%= (revision.identifier ? link_to_revision(revision, @repository) : format_revision(revision)) if revision && revision != previous_revision %></td> <td class="author"><%= h(revision.author.to_s.split('<').first) if revision && revision != previous_revision %></td> |