diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-11 16:02:14 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-11 16:02:14 +0000 |
commit | 0456c666289d81cc2b34af72922346d073842588 (patch) | |
tree | 8291833614b75c4e02c4474157f3f7a3a2c08f23 /app | |
parent | 445f31c64261eb9c9ca85e59fcb9f8fde171cd9e (diff) | |
parent | 0cd2ea88b3a70a968ac64346167f9056d6413907 (diff) | |
download | gitlab-ce-0456c666289d81cc2b34af72922346d073842588.tar.gz |
Merge branch 'improve/avatar_size' of /home/git/repositories/gitlab/gitlabhq
Diffstat (limited to 'app')
-rw-r--r-- | app/views/events/_event.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/events/_event.html.haml b/app/views/events/_event.html.haml index 892dacafa62..12c4e1af531 100644 --- a/app/views/events/_event.html.haml +++ b/app/views/events/_event.html.haml @@ -4,7 +4,7 @@ #{time_ago_in_words(event.created_at)} ago. = cache event do - = image_tag avatar_icon(event.author_email), class: "avatar s24", alt:'' + = image_tag avatar_icon(event.author_email, 24), class: "avatar s24", alt:'' - if event.push? = render "events/event/push", event: event |