diff options
author | Phil Hughes <me@iamphill.com> | 2017-09-05 11:25:28 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-09-05 11:25:28 +0100 |
commit | 8f4ce0d6d46303bb79b647380b4bd81d8e9e3b39 (patch) | |
tree | 7b23c162a543970b825a2a638d3c2be2e86a1b9f /app/helpers/projects_helper.rb | |
parent | 402812829c1cf484417755bb7e50e59c7cfb385d (diff) | |
download | gitlab-ce-8f4ce0d6d46303bb79b647380b4bd81d8e9e3b39.tar.gz |
fixed images changing height of breadcrumbs
Diffstat (limited to 'app/helpers/projects_helper.rb')
-rw-r--r-- | app/helpers/projects_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb index 0dc820e5d03..be52ebdd696 100644 --- a/app/helpers/projects_helper.rb +++ b/app/helpers/projects_helper.rb @@ -63,7 +63,7 @@ module ProjectsHelper project_link = link_to project_path(project), { class: ("project-item-select-holder" unless show_new_nav?) } do output = if show_new_nav? && project.avatar_url && !Rails.env.test? - project_icon(project, alt: project.name, class: 'avatar-tile', width: 16, height: 16) + project_icon(project, alt: project.name, class: 'avatar-tile', width: 15, height: 15) else "" end |