]> git.openstreetmap.org Git - rails.git/commitdiff
Fix element pagination width calculation
authorAnton Khorev <tony29@yandex.ru>
Fri, 13 Sep 2024 15:50:22 +0000 (18:50 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 13 Sep 2024 15:50:22 +0000 (18:50 +0300)
app/helpers/browse_helper.rb

index 0ea10e219080812e79a94e07d415fdfdb4bfff07..5aef4e7ca72d4a8212662fabad966a62da1e6d3c 100644 (file)
@@ -86,7 +86,7 @@ module BrowseHelper
     max_width_for_default_padding = 35
 
     width = 0
-    pagination_items(pages, {}).each do |body|
+    pagination_items(pages, {}).each do |(body)|
       width += 2 # padding width
       width += body.length
     end