diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-09-03 13:44:54 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-09-03 13:46:11 +0200 |
commit | 63ba17c4db4984bb3d060fdf33d25b7038aa1856 (patch) | |
tree | d84854f119f734903d04ccc861e7d1fab6ac83d3 /app/views/events | |
parent | 59d9dc44088b7d4cd75c57b89a24497335c20895 (diff) | |
download | gitlab-ce-63ba17c4db4984bb3d060fdf33d25b7038aa1856.tar.gz |
Redesign activity feed on dashboard and project pages
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/events')
-rw-r--r-- | app/views/events/_event.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/events/_event.html.haml b/app/views/events/_event.html.haml index 0faab4458e9..3cd65edacbf 100644 --- a/app/views/events/_event.html.haml +++ b/app/views/events/_event.html.haml @@ -3,8 +3,8 @@ .event-item-timestamp #{time_ago_with_tooltip(event.created_at)} - = cache [event, "v1"] do - = image_tag avatar_icon(event.author_email, 24), class: "avatar s24", alt:'' + = cache [event, "v2"] do + = image_tag avatar_icon(event.author_email, 48), class: "avatar s48", alt:'' - if event.created_project? = render "events/event/created_project", event: event - elsif event.push? |