diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-01-26 18:03:01 -0200 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-02-02 11:25:44 -0200 |
commit | 62cad887ea695d40afee894089f894ee398cf98a (patch) | |
tree | 7f56ba360f9a6a4e65a32e65721f172d58d58213 | |
parent | e38a1fc83ee7a9fb04fe370204f0094723890f00 (diff) | |
download | gitlab-ce-62cad887ea695d40afee894089f894ee398cf98a.tar.gz |
Use time_ago_with_tooltip on spam logs list
-rw-r--r-- | app/views/admin/spam_logs/_spam_log.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/spam_logs/_spam_log.html.haml b/app/views/admin/spam_logs/_spam_log.html.haml index 9f9f1d75895..51e94acce22 100644 --- a/app/views/admin/spam_logs/_spam_log.html.haml +++ b/app/views/admin/spam_logs/_spam_log.html.haml @@ -1,7 +1,7 @@ - user = spam_log.user %tr %td - = spam_log.created_at.to_s(:short) + = time_ago_with_tooltip(spam_log.created_at) %td - if user = link_to user.name, user |