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/views/explore/projects/page_out_of_bounds.html.haml')
-rw-r--r--app/views/explore/projects/page_out_of_bounds.html.haml5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/explore/projects/page_out_of_bounds.html.haml b/app/views/explore/projects/page_out_of_bounds.html.haml
index c554cce3dc6..ef5ee2c679e 100644
--- a/app/views/explore/projects/page_out_of_bounds.html.haml
+++ b/app/views/explore/projects/page_out_of_bounds.html.haml
@@ -9,7 +9,7 @@
- else
= render 'explore/head'
-= render 'explore/projects/nav' unless Feature.enabled?(:project_list_filter_bar) && current_user
+= render 'explore/projects/nav'
.nothing-here-block
.svg-content
@@ -18,4 +18,5 @@
%h5= _("Maximum page reached")
%p= _("Sorry, you have exceeded the maximum browsable page number. Please use the API to explore further.")
- = link_to _("Back to page %{number}") % { number: @max_page_number }, request.params.merge(page: @max_page_number), class: 'gl-button btn btn-inverted'
+ = render Pajamas::ButtonComponent.new(href: request.params.merge(page: @max_page_number)) do
+ = _("Back to page %{number}") % { number: @max_page_number }