Commit 2a7cd2f1b5ed824bafafeb2004746a384be44453

Authored by Steven Verbeek
1 parent 550274e1

Fixed tab indent.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/views/issues/_show.html.haml
1 1 %li.wll{ :id => dom_id(issue), :class => "issue #{issue.critical ? "critical" : ""}", :url => project_issue_path(issue.project, issue) }
2 2 .right
3   - - if issue.notes.any?
4   - %span.label= pluralize issue.notes.count, 'comment'
  3 + - if issue.notes.any?
  4 + %span.label= pluralize issue.notes.count, 'comment'
5 5 - if can? current_user, :modify_issue, issue
6 6 - if issue.closed
7 7 = link_to 'Reopen', project_issue_path(issue.project, issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "btn small", :remote => true
... ...