update rails to 8.1.2

This commit is contained in:
Alex Turchyn
2026-01-26 18:18:07 +02:00
committed by Pete Matsyburka
parent d12c67fd54
commit 7b5494468f
23 changed files with 1676 additions and 1018 deletions
+3 -4
View File
@@ -1,4 +1,3 @@
<% link = pagy_anchor(pagy) %>
<% if pagy.pages > 1 %>
<div class="flex my-6 justify-center md:justify-between">
<div class="hidden md:block text-sm">
@@ -12,8 +11,8 @@
<div class="flex items-center space-x-1.5">
<%= local_assigns[:right_additional_html] %>
<div class="join">
<% if pagy.prev %>
<%== link.call(pagy.prev, '«', classes: 'join-item btn min-h-full h-10') %>
<% if pagy.previous %>
<%= link_to '«', url_for(page: pagy.previous), class: 'join-item btn min-h-full h-10' %>
<% else %>
<span class="join-item btn btn-disabled !bg-base-200 min-h-full h-10">«</span>
<% end %>
@@ -23,7 +22,7 @@
<% if local_assigns[:next_page_path].present? %>
<%= link_to '»', local_assigns[:next_page_path], class: 'join-item btn min-h-full h-10' %>
<% elsif pagy.next %>
<%== link.call(pagy.next, '»', classes: 'join-item btn min-h-full h-10') %>
<%= link_to '»', url_for(page: pagy.next), class: 'join-item btn min-h-full h-10' %>
<% else %>
<span class="join-item btn btn-disabled !bg-base-200 min-h-full h-10">»</span>
<% end %>