Always show changeset element page links below headings

This commit is contained in:
Anton Khorev 2024-09-14 17:15:11 +03:00
parent 25dbc4d43e
commit 54c0361744
2 changed files with 10 additions and 12 deletions

View file

@ -92,7 +92,7 @@ module BrowseHelper
end end
link_classes = ["page-link", { "px-1" => width > max_width_for_default_padding }] link_classes = ["page-link", { "px-1" => width > max_width_for_default_padding }]
tag.ul :class => "pagination pagination-sm mb-1 ms-auto" do tag.ul :class => "pagination pagination-sm mb-2" do
pagination_items(pages, {}).each do |body, page_or_class| pagination_items(pages, {}).each do |body, page_or_class|
linked = !(page_or_class.is_a? String) linked = !(page_or_class.is_a? String)
link = if linked link = if linked

View file

@ -1,11 +1,9 @@
<div class="d-flex flex-wrap gap-2"> <h4 class="fs-5"><%= type_and_paginated_count(type, pages) %></h4>
<h4 class="fs-5 mb-0"><%= type_and_paginated_count(type, pages) %></h4> <% if pages.page_count > 1 %>
<% if pages.page_count > 1 %> <%= sidebar_classic_pagination(pages, "#{type}_page") do |page|
<%= sidebar_classic_pagination(pages, "#{type}_page") do |page| {
{ :title => type_and_paginated_count(type, pages, page),
:title => type_and_paginated_count(type, pages, page), :data => { :turbo => "true" }
:data => { :turbo => "true" } }
} end %>
end %> <% end %>
<% end %>
</div>