From 7cb1b047322b8b3a813c60085d578541626032f7 Mon Sep 17 00:00:00 2001 From: Ceithir Date: Tue, 24 Oct 2023 09:00:58 +0200 Subject: [PATCH] Linter --- app/views/tag_wranglings/index.html.erb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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 @@