]> git.openstreetmap.org Git - rails.git/commitdiff
Fix erblint warnings
authorTom Hughes <tom@compton.nu>
Sat, 5 Jun 2021 06:40:55 +0000 (07:40 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 5 Jun 2021 06:40:55 +0000 (07:40 +0100)
app/views/browse/_common_details.html.erb
app/views/diary_entries/comments.html.erb
app/views/issues/index.html.erb
app/views/traces/_trace.html.erb
app/views/user_blocks/revoke.html.erb
app/views/users/_contact.html.erb

index 3748f2f6587409b0c21166b1c24df2cb077cbd67..35620775488f230ab4a0665d9bfdb2aedc33d437 100644 (file)
@@ -4,7 +4,7 @@
 </h4>
 
 <p class="font-italic">
-  <% if common_details.changeset.tags['comment'].present? %>
+  <% if common_details.changeset.tags["comment"].present? %>
     <%= linkify(common_details.changeset.tags["comment"]) %>
   <% else %>
     <%= t "browse.no_comment" %>
@@ -13,7 +13,7 @@
 
 <div class="details">
   <%= t "browse.#{common_details.visible? ? :edited : :deleted}_by_html",
-        :time => time_ago_in_words(common_details.timestamp, :scope => :'datetime.distance_in_words_ago'),
+        :time => time_ago_in_words(common_details.timestamp, :scope => :"datetime.distance_in_words_ago"),
         :user => changeset_user_link(common_details.changeset),
         :title => l(common_details.timestamp) %>
   &middot;
index 290fba35e66a7edd20c9fcce9cb714266af2e69d..5f08f8d30a68efe79ebf67ec1a9a0e370a15ede9 100644 (file)
@@ -17,7 +17,7 @@
     <% @comments.each do |comment| -%>
     <tr class="<%= "text-muted" unless comment.visible? %>">
       <td width="25%"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
-      <td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= time_ago_in_words(comment.created_at, :scope => :'datetime.distance_in_words_ago') %></span></td>
+      <td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= time_ago_in_words(comment.created_at, :scope => :"datetime.distance_in_words_ago") %></span></td>
       <td width="50%" class="richtext text-break"><%= comment.body.to_html %></td>
     </tr>
     <% end -%>
index 9fd8f116757d0477d53cde18218d7cfd61410117..0aa9fea503f1aa75e1c8df7b824ee816517565d5 100644 (file)
           <td>
             <% if issue.user_updated %>
               <%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
-                                                    :time => time_ago_in_words(issue.updated_at, :scope => :'datetime.distance_in_words_ago'),
+                                                    :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
                                                     :title => l(issue.updated_at) %>
             <% else %>
-              <%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :'datetime.distance_in_words_ago'),
+              <%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
                                                :title => l(issue.updated_at) %>
             <% end %>
           </td>
index 7dc20c203fafe130ecd9dea5c989d6bc42745b7a..44de2ef061114c3c857cadbe4646f68324c61695 100644 (file)
@@ -30,7 +30,7 @@
     </ul>
     <p class="text-muted mb-0">
       <span title="<%= trace.timestamp %>">
-        <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %>
+        <%= time_ago_in_words(trace.timestamp, :scope => :"datetime.distance_in_words_ago") %>
       </span>
       <%= t ".by" %> <%= link_to trace.user.display_name, user_path(trace.user) %>
       <% if !trace.tags.empty? %>
index 1899e51451dc422f140b5ec2e427813260814fa4..9ece75bb5f5839ca972c55d14d7adaa301a79b31 100644 (file)
@@ -28,6 +28,6 @@
 
 <% else %>
   <p>
-    <%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :'datetime.distance_in_words_ago')) %>
+    <%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :"datetime.distance_in_words_ago")) %>
   </p>
 <% end %>
index a5b29411c64e30d34cae1ca6a6d571562320e689..c7e10c060c2c655eb4076f6d0d301ff8bff3e437 100644 (file)
@@ -21,7 +21,7 @@
     <p>
       <% changeset = contact.changesets.first %>
       <% if changeset %>
-        <%= t("users.show.latest edit", :ago => time_ago_in_words(changeset.created_at, :scope => :'datetime.distance_in_words_ago')) %>
+        <%= t("users.show.latest edit", :ago => time_ago_in_words(changeset.created_at, :scope => :"datetime.distance_in_words_ago")) %>
         <% comment = changeset.tags["comment"].to_s == "" ? t("browse.no_comment") : changeset.tags["comment"] %>
         <q><%= link_to(comment,
                        { :controller => "browse", :action => "changeset", :id => changeset.id },