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 @@