X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e91956d0f7ea6f2b0719a1459110ad3a09d2ee9a..965f32d545d7c44ad7b36264b818b930a50d8901:/app/views/browse/_node.html.erb
diff --git a/app/views/browse/_node.html.erb b/app/views/browse/_node.html.erb
index 2c2cdd4c0..873360bb2 100644
--- a/app/views/browse/_node.html.erb
+++ b/app/views/browse/_node.html.erb
@@ -13,10 +13,10 @@
<% unless node.ways.empty? and node.containing_relation_members.empty? %>
<%= t 'browse.part_of' %>
- <% node.ways.each do |way| %>
- - <%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %>
+ <% node.ways.uniq.each do |way| %>
+ - <%= link_to printable_name(way), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %>
<% end %>
- <%= render :partial => "containing_relation", :collection => node.containing_relation_members %>
+ <%= render :partial => "containing_relation", :collection => node.containing_relation_members.uniq %>
<% end %>