From b7ad61560c498adf46c97746593506141de97e47 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 6 Sep 2023 16:43:20 +0100 Subject: [PATCH] Fix lack of margin on changeset browsing messages The display area here uses negative margins to make the flush list work, so we need to add them back in for normal text. --- app/views/changesets/index.html.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index 43f194522..97e6351a0 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -13,9 +13,9 @@ <% end -%> <% elsif params[:bbox] %> -

<%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>

+

<%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>

<% elsif params[:display_name] %> -

<%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>

+

<%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>

<% else %> -

<%= t(params[:max_id] ? ".no_more" : ".empty") %>

+

<%= t(params[:max_id] ? ".no_more" : ".empty") %>

<% end %> -- 2.39.5