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:
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r--app/helpers/application_helper.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index e3a630024d9..57937353955 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -123,7 +123,7 @@ module ApplicationHelper
{
page: body_data_page,
page_type_id: controller.params[:id],
- find_file: find_file_path,
+ find_file: find_file_path(ref_type: @ref_type),
group: @group&.path,
group_full_path: @group&.full_path
}.merge(project_data)
@@ -404,6 +404,10 @@ module ApplicationHelper
end
def add_page_specific_style(path, defer: true)
+ @already_added_styles ||= Set.new
+ return if @already_added_styles.include?(path)
+
+ @already_added_styles.add(path)
content_for :page_specific_styles do
if defer
stylesheet_link_tag_defer path
@@ -468,7 +472,7 @@ module ApplicationHelper
end
def hidden_resource_icon(resource, css_class: nil)
- issuable_title = _('This %{issuable} is hidden because its author has been banned')
+ issuable_title = _('This %{issuable} is hidden because its author has been banned.')
case resource
when Issue