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 'lib/sidebars/menu.rb')
-rw-r--r--lib/sidebars/menu.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/sidebars/menu.rb b/lib/sidebars/menu.rb
index 432cc6ebc8b..5f9255c06d0 100644
--- a/lib/sidebars/menu.rb
+++ b/lib/sidebars/menu.rb
@@ -66,6 +66,11 @@ module Sidebars
@renderable_items ||= @items.select(&:render?)
end
+ # Defines whether menu is separated from others with a top separator
+ def separated?
+ false
+ end
+
# Returns a tree-like representation of itself and all
# renderable menu entries, with additional information
# on whether the item(s) have an active route
@@ -79,7 +84,8 @@ module Sidebars
link: link,
is_active: is_active,
pill_count: has_pill? ? pill_count : nil,
- items: items
+ items: items,
+ separated: separated?
}
end