]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_tag_details.html.erb
Fix rubocop warning
[rails.git] / app / views / browse / _tag_details.html.erb
index eaf98b57b26db67d22c720b17d2367c802772d93..cb876198c310bbe0b7c7f4d50da7bdd20453fd95 100644 (file)
@@ -1,8 +1,8 @@
 <% unless tag_details.empty? %>
-  <div class='browse-section'>
-    <h4><%= t'browse.tag_details.tags' %></h4>
-    <ul class='browse-tag-list'>
-      <%= render :partial => "tag", :collection => tag_details.sort %>
-    </ul>
+  <h4><%= t ".tags" %></h4>
+  <div class='mb-3 border border-secondary-subtle rounded overflow-hidden'>
+    <table class='mb-0 browse-tag-list table align-middle'>
+      <%= render :partial => "browse/tag", :collection => tag_details.sort %>
+    </table>
   </div>
 <% end %>