Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-09-05 13:25:28 +0300
committerPhil Hughes <me@iamphill.com>2017-09-05 13:25:28 +0300
commit8f4ce0d6d46303bb79b647380b4bd81d8e9e3b39 (patch)
tree7b23c162a543970b825a2a638d3c2be2e86a1b9f /app/helpers/groups_helper.rb
parent402812829c1cf484417755bb7e50e59c7cfb385d (diff)
fixed images changing height of breadcrumbs
Diffstat (limited to 'app/helpers/groups_helper.rb')
-rw-r--r--app/helpers/groups_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/groups_helper.rb b/app/helpers/groups_helper.rb
index 4b8549dcb9b..05640d3cf3f 100644
--- a/app/helpers/groups_helper.rb
+++ b/app/helpers/groups_helper.rb
@@ -87,7 +87,7 @@ module GroupsHelper
link_to(group_path(group), class: "group-path #{'hidable' if hidable}") do
output =
if (show_new_nav? && group.try(:avatar_url) || (show_new_nav? && show_avatar)) && !Rails.env.test?
- image_tag(group_icon(group), class: "avatar-tile", width: 16, height: 16)
+ image_tag(group_icon(group), class: "avatar-tile", width: 15, height: 15)
else
""
end