diff --git a/app/views/tag_wranglings/index.html.erb b/app/views/tag_wranglings/index.html.erb
index 2d1c1e7c982..7f07bf665fc 100755
--- a/app/views/tag_wranglings/index.html.erb
+++ b/app/views/tag_wranglings/index.html.erb
@@ -106,18 +106,18 @@
<% @tags.each do |tag| %>
<% if tag.unwrangled? %>
-
- <%= check_box_tag 'selected_tags[]', tag.id, nil, id: "selected_tags_#{tag.id}" %>
- <%= label_tag "selected_tags_#{tag.id}", "#{tag.name}" %>
+ | ">
+ <%= check_box_tag "selected_tags[]", tag.id, nil, id: "selected_tags_#{tag.id}" %>
+ <%= label_tag "selected_tags_#{tag.id}", tag.name.to_s %>
|
- <%= l(tag.created_at.to_date) %> |
+ "><%= l(tag.created_at.to_date) %> |
-
+ | ">
<% if tag.canonical? %>
- <%= ts('Yes') %>
+ <%= ts("Yes") %>
<% else %>
- <%= check_box_tag 'canonicals[]', tag.id, tag.canonical?, id: "canonicals_#{tag.id}" %>
+ <%= check_box_tag "canonicals[]", tag.id, tag.canonical?, id: "canonicals_#{tag.id}" %>
<% end %>
|
@@ -125,9 +125,9 @@
- - <%= link_to ts('Edit'), {controller: :tags, action: :edit, id: tag} %>
- - <%= link_to ts('Wrangle'), {controller: :tags, action: :wrangle, id: tag} %>
- - <%= link_to ts('Works'), {controller: :works, action: :index, tag_id: tag} %>
+ - <%= link_to ts("Edit"), { controller: :tags, action: :edit, id: tag } %>
+ - <%= link_to ts("Wrangle"), { controller: :tags, action: :wrangle, id: tag } %>
+ - <%= link_to ts("Works"), { controller: :works, action: :index, tag_id: tag } %>
|