Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nacyot/putne
Browse files Browse the repository at this point in the history
  • Loading branch information
nacyot committed Sep 27, 2013
2 parents f7bb519 + b129110 commit d31717d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/report_module/_project_summary_4.html.haml
Expand Up @@ -29,17 +29,17 @@
%span
%tr
%th Duplications
%td= report.sum_duplications if report.sum_duplications
%td= report.sum_duplications unless report.nil?
%td
%span.duplication-sparkline{class: "duplication-sparkline-#{project.title}"}
%tr
%th Smells
%td= report.sum_smells if report.sum_smells
%td= report.sum_smells unless report.nil?
%td
%span.smell-sparkline{class: "smell-sparkline-#{project.title}"}
%tr
%th Churns
%td= report.sum_churns if report.sum_churns
%td= report.sum_churns unless report.nil?
%td
%span.churn-sparkline{class: "churn-sparkline-#{project.title}"}

Expand Down

0 comments on commit d31717d

Please sign in to comment.