Commit 6afe0fcf3a9ffb299ef384e1d70cee6bad099685
1 parent
77c34558
Exists in
master
and in
1 other branch
Fixed time format in app#deploys, tidied the template
Showing
1 changed file
with
6 additions
and
5 deletions
Show diff stats
app/views/deploys/_table.html.haml
... | ... | @@ -13,8 +13,9 @@ |
13 | 13 | %td.app |
14 | 14 | = deploy.app.name |
15 | 15 | %span.environment= deploy.environment |
16 | - %td.latest #{time_ago_in_words(deploy.created_at)} ago | |
17 | - %td.who #{deploy.username} | |
18 | - %td.message #{deploy.message} | |
19 | - %td.repository #{deploy.repository} | |
20 | - %td.revision #{deploy.revision} | |
16 | + %td.latest= deploy.created_at.to_s(:micro) | |
17 | + %td.who= deploy.username | |
18 | + %td.message= deploy.message | |
19 | + %td.repository= deploy.repository | |
20 | + %td.revision= deploy.revision | |
21 | + | ... | ... |