From: Anton Khorev Date: Fri, 13 Sep 2024 15:50:22 +0000 (+0300) Subject: Fix element pagination width calculation X-Git-Tag: live~121^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/4e97231269dae821d60a557bf8f966282f17be5c Fix element pagination width calculation --- diff --git a/app/helpers/browse_helper.rb b/app/helpers/browse_helper.rb index 0ea10e219..5aef4e7ca 100644 --- a/app/helpers/browse_helper.rb +++ b/app/helpers/browse_helper.rb @@ -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