Commit ea2965aa7b376cd5861c20bae10117523bc587c6

Authored by Nathan Broadbent
2 parents e2869720 83b0de99
Exists in master and in 1 other branch production

Merge pull request #181 from fxposter/master

Fixed table on app page, when no errors were found
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/errs/_table.html.haml
... ... @@ -42,7 +42,7 @@
42 42 %td.resolve= link_to image_tag("thumbs-up.png"), resolve_app_err_path(problem.app, problem), :title => "Resolve", :method => :put, :confirm => err_confirm, :class => 'resolve' if problem.unresolved?
43 43 - if errs.none?
44 44 %tr
45   - %td{:colspan => (@app ? 6 : 7)}
  45 + %td{:colspan => (any_issue_links ? 8 : 7)}
46 46 %em No errs here
47 47 = paginate errs
48 48 .tab-bar
... ...