X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5c551d475fa2e055e4b644c26bd7ca8f99b748a1..aad81eb74c9e6d70971f938da542271b8a70b638:/app/views/issues/index.html.erb?ds=sidebyside
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb
index 9fd8f1167..4f9d3dbd6 100644
--- a/app/views/issues/index.html.erb
+++ b/app/views/issues/index.html.erb
@@ -24,6 +24,7 @@
<%= text_field_tag :search_by_user,
params[:search_by_user],
:placeholder => t(".reported_user"),
+ :autocomplete => "on",
:class => "form-control" %>
@@ -62,10 +63,10 @@
<% 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 %>
|