X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2acf8cb8f22deb2e2960c99c0eeb8c5d64533c9e..f7d4fa057a0098a8a98f251f2118453ec6e376ad:/app/views/browse/_node.html.erb
diff --git a/app/views/browse/_node.html.erb b/app/views/browse/_node.html.erb
index cc8597292..0ffe7c68b 100644
--- a/app/views/browse/_node.html.erb
+++ b/app/views/browse/_node.html.erb
@@ -1,4 +1,4 @@
-<% if node.redacted? %>
+<% if node.redacted? && !params[:show_redactions] %>
<%= t "browse.redacted.message_html",
:type => t("browse.redacted.type.node"),
@@ -7,7 +7,7 @@
:id => node.redaction.id), node.redaction) %>
<% else %>
-
+ <%= tag.div :class => ["browse-section", "browse-node", { "text-body-secondary" => node.redacted? }] do %>
<%= render :partial => "browse/common_details", :object => node %>
<% unless node.ways.empty? and node.containing_relation_members.empty? %>
@@ -17,7 +17,7 @@
<%= t "browse.part_of_ways", :count => node.ways.uniq.count %>
<% node.ways.uniq.each do |way| %>
- - <%= link_to printable_name(way), way_path(way), { :class => link_class("way", way), :title => link_title(way) } %>
+ - <%= element_single_current_link "way", way %>
<% end %>
@@ -31,5 +31,5 @@
<% end %>
<% end %>
-
+ <% end %>
<% end %>