Commit 567d7e96dc171dcda88a1d2325ea0b43e36e2e40
1 parent
bb5ba2ff
Exists in
master
and in
1 other branch
app names are links
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/errs/_table.html.haml
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | - errs.each do |err| |
12 | 12 | %tr{:class => err.resolved? ? 'resolved' : 'unresolved'} |
13 | 13 | %td.app |
14 | - = err.app.name | |
14 | + = link_to err.app.name, app_path(err.app) | |
15 | 15 | %span.environment= err.environment |
16 | 16 | %td.message |
17 | 17 | = link_to err.message, app_err_path(err.app, err) | ... | ... |