Commit 74537cadf70318a6218a15d50028bd56912c06c1
Committed by
Antonio Terceiro
1 parent
514e9cbf
Exists in
master
and in
28 other branches
Fixes an error in the tasks view
Fixes an error I found in the tasks view while I was investigating another bug. Signed-off-by: Antonio Terceiro <terceiro@colivre.coop.br>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/tasks/processed.rhtml
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | <ul> | 7 | <ul> |
8 | <% @tasks.each do |item| %> | 8 | <% @tasks.each do |item| %> |
9 | <li> | 9 | <li> |
10 | - <strong><%= item.information %></strong> <br/> | 10 | + <strong><%= task_information(item) %></strong> <br/> |
11 | <small> | 11 | <small> |
12 | <%= _('Created:') +' '+ show_date(item.created_at) %> | 12 | <%= _('Created:') +' '+ show_date(item.created_at) %> |
13 | — | 13 | — |