summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-11 16:09:23 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-11 16:09:23 +0200
commit0cd2ea88b3a70a968ac64346167f9056d6413907 (patch)
treed7b4ce05a72360e820cc8a36b11610fb85d2ceaf
parent880fef0d92ba9983babdf47c3d91526b4a5729f8 (diff)
downloadgitlab-ce-0cd2ea88b3a70a968ac64346167f9056d6413907.tar.gz
Dashboard avatars: No need to load 40px images if we render them in 24px
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--app/views/events/_event.html.haml2
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