Skip to content

Commit

Permalink
Fix lack of margin on changeset browsing messages
Browse files Browse the repository at this point in the history
The display area here uses negative margins to make the flush list
work, so we need to add them back in for normal text.
  • Loading branch information
gravitystorm committed Sep 6, 2023
1 parent 8aba3c4 commit b7ad615
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/changesets/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
</div>
<% end -%>
<% elsif params[:bbox] %>
<p><%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %></p>
<p class="mx-3"><%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %></p>
<% elsif params[:display_name] %>
<p><%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %></p>
<p class="mx-3"><%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %></p>
<% else %>
<p><%= t(params[:max_id] ? ".no_more" : ".empty") %></p>
<p class="mx-3"><%= t(params[:max_id] ? ".no_more" : ".empty") %></p>
<% end %>

0 comments on commit b7ad615

Please sign in to comment.