diff options
author | azul <azul@riseup.net> | 2013-11-18 12:03:06 -0800 |
---|---|---|
committer | azul <azul@riseup.net> | 2013-11-18 12:03:06 -0800 |
commit | d2eaffde87286c0cc9c0658503a60706759f7f51 (patch) | |
tree | feb272583ca7d4d98eb3f53e0767586d83493a8c /help/app/views/tickets/_ticket.html.haml | |
parent | 7a107e0d38271e7103d3494e06d52f3434022f22 (diff) | |
parent | eca6caac21254c72b512c0bc9b3514b544396c7c (diff) |
Merge pull request #114 from jessib/feature/rename_ticket_title_to_subject
Feature/rename ticket title to subject
Diffstat (limited to 'help/app/views/tickets/_ticket.html.haml')
-rw-r--r-- | help/app/views/tickets/_ticket.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help/app/views/tickets/_ticket.html.haml b/help/app/views/tickets/_ticket.html.haml index a064c4e..5bc33c8 100644 --- a/help/app/views/tickets/_ticket.html.haml +++ b/help/app/views/tickets/_ticket.html.haml @@ -1,6 +1,6 @@ - url = auto_ticket_path(ticket) %tr - %td= link_to ticket.title, url + %td= link_to ticket.subject, url %td= link_to ticket.created_at.to_s(:short), url %td= link_to ticket.updated_at.to_s(:short), url %td= ticket.commenters |