From ba6e29573bb8658e2c26da562357254137793671 Mon Sep 17 00:00:00 2001 From: Kane Jamison Date: Wed, 22 Jul 2026 21:32:51 -0700 Subject: [PATCH] fix: correct malformed pagination style attribute The style attribute on the pagination section was missing its opening quote, producing invalid HTML in the generated collection index view. --- lib/tasks/templates/views/collections/index.html.erb.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/templates/views/collections/index.html.erb.tt b/lib/tasks/templates/views/collections/index.html.erb.tt index 6a80cf9..a117c64 100644 --- a/lib/tasks/templates/views/collections/index.html.erb.tt +++ b/lib/tasks/templates/views/collections/index.html.erb.tt @@ -45,7 +45,7 @@ <%% if @pagination[:total_pages] > 1 %> -
+
<%% if @pagination[:prev_page] %> <%%= link_to "← Previous", <%= index_path_helper %>(page: @pagination[:current_page] - 1), class: "pagination-prev" %> <%% end %>