Commit 3588a07b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Remove default project icon

parent 89f9ae77
...@@ -56,8 +56,6 @@ module ApplicationHelper ...@@ -56,8 +56,6 @@ module ApplicationHelper
image_tag project.avatar.url, options image_tag project.avatar.url, options
elsif project.avatar_in_git elsif project.avatar_in_git
image_tag project_avatar_path(project), options image_tag project_avatar_path(project), options
elsif options[:only_uploaded]
image_tag '/assets/no_project_icon.png', options
else # generated icon else # generated icon
project_identicon(project, options) project_identicon(project, options)
end end
......
...@@ -89,8 +89,6 @@ ...@@ -89,8 +89,6 @@
.col-sm-10 .col-sm-10
- if @project.avatar? - if @project.avatar?
= project_icon(@project.to_param, alt: '', class: 'avatar s160') = project_icon(@project.to_param, alt: '', class: 'avatar s160')
- else
= project_icon(@project.to_param, alt: '', class: 'avatar s160', only_uploaded: true)
%p.light %p.light
- if @project.avatar_in_git - if @project.avatar_in_git
Project avatar in repository: #{ @project.avatar_in_git } Project avatar in repository: #{ @project.avatar_in_git }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment