summaryrefslogtreecommitdiff
path: root/app/views/events/_event.html.haml
diff options
context:
space:
mode:
authorIzaak Alpert <ialpert@blackberry.com>2013-06-06 12:02:58 -0400
committerIzaak Alpert <ialpert@blackberry.com>2013-06-26 08:53:03 -0400
commitc1b05e7b8638e562ded689ae9a3ae1990fb1d5a7 (patch)
treef232cab84a53b1a4af03a3db5f0e19a1f6783b89 /app/views/events/_event.html.haml
parent579c0b979190274ca51f50fea1cdfce31c3ec77a (diff)
downloadgitlab-ce-c1b05e7b8638e562ded689ae9a3ae1990fb1d5a7.tar.gz
Gravatar image fixes when gravatar unavailable
-Alt text to image was set to hash, which would make the page display hashes if the image/gravatar wasn't available, set the alt text to '', and made the main tool bar image follow the same or similar constraints as the other images (.avatar, .s26) Conflicts: app/assets/stylesheets/themes/ui_bb.scss app/views/snippets/_snippet.html.haml Change-Id: I42e1e86f535486fd2556d4b3e4591f3676eea033
Diffstat (limited to 'app/views/events/_event.html.haml')
-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 e2bf54ea5c9..80d16631fa0 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 gravatar_icon(event.author_email), class: "avatar s24"
+ = image_tag gravatar_icon(event.author_email), class: "avatar s24", alt:''
- if event.push?
= render "events/event/push", event: event