Skip to content

Commit b9610f4

Browse files
committed
Fixed github glyph
1 parent f1b40fd commit b9610f4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

app/views/projects/show.html.haml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
.alert.alert-danger= t('.disabled_notifications')
88

99
%h1#project_header
10-
= (@project.avatar_url.nil?)? (glyph :github) : (image_tag @project.avatar_url , class: 'project_avatar_img')
10+
- if @project.avatar_url.nil?
11+
%i.icon-github
12+
- else
13+
= image_tag(@project.avatar_url, class: 'project_avatar_img')
1114
= link_to @project.full_name , @project.github_url, target: '_blank'
1215
.pull-right
1316
- if @project.collaborators.empty?

0 commit comments

Comments
 (0)