From 2a7cd2f1b5ed824bafafeb2004746a384be44453 Mon Sep 17 00:00:00 2001 From: Steven Verbeek Date: Mon, 19 Mar 2012 21:43:25 -0300 Subject: [PATCH] Fixed tab indent. --- app/views/issues/_show.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/issues/_show.html.haml b/app/views/issues/_show.html.haml index c2e7531e..185d5f0a 100644 --- a/app/views/issues/_show.html.haml +++ b/app/views/issues/_show.html.haml @@ -1,7 +1,7 @@ %li.wll{ :id => dom_id(issue), :class => "issue #{issue.critical ? "critical" : ""}", :url => project_issue_path(issue.project, issue) } .right - - if issue.notes.any? - %span.label= pluralize issue.notes.count, 'comment' + - if issue.notes.any? + %span.label= pluralize issue.notes.count, 'comment' - if can? current_user, :modify_issue, issue - if issue.closed = link_to 'Reopen', project_issue_path(issue.project, issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "btn small", :remote => true