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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-09-07 18:09:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-09-07 18:09:04 +0300
commitcf24d183b3f71f091a02f12b211f3001be5b5085 (patch)
treef39e5c05483b1f9a2a34d06e52de52750ef5b08e /app/helpers/dropdowns_helper.rb
parenta8653790086d284cecffdc35892bb422cd6c9a7b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/dropdowns_helper.rb')
-rw-r--r--app/helpers/dropdowns_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/dropdowns_helper.rb b/app/helpers/dropdowns_helper.rb
index 772a5f79a4d..21f8f60a66d 100644
--- a/app/helpers/dropdowns_helper.rb
+++ b/app/helpers/dropdowns_helper.rb
@@ -67,7 +67,7 @@ module DropdownsHelper
if options.fetch(:back, false)
title_output << content_tag(:button, class: "dropdown-title-button dropdown-menu-back", aria: { label: "Go back" }, type: "button") do
- icon('arrow-left')
+ sprite_icon('arrow-left')
end
end
@@ -75,7 +75,7 @@ module DropdownsHelper
if options.fetch(:close, true)
title_output << content_tag(:button, class: "dropdown-title-button dropdown-menu-close", aria: { label: "Close" }, type: "button") do
- icon('times', class: 'dropdown-menu-close-icon')
+ sprite_icon('close', css_class: 'dropdown-menu-close-icon')
end
end