X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/02628bed1e7b5c2656bc68076403467e92462b4f..502dc65e95593287647c426e733efa06750dd322:/app/views/trace/view.html.erb
diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb
index 0688ec130..4ab46bd3e 100644
--- a/app/views/trace/view.html.erb
+++ b/app/views/trace/view.html.erb
@@ -36,9 +36,7 @@
<%= t'trace.view.tags' %> |
<% unless @trace.tags.empty? %>
- <% @trace.tags.each do |tag| %>
- <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %>
- <% end %>
+ <%= @trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ") %>
<% else %>
<%= t'trace.view.none' %>
<% end %>
|