X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a2c1fe793002595049694936b7ff9e46e8d1befb..764f808d5a5faebc835ed0f588bae4a306ad687d:/app/views/issues/index.html.erb
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 %>
|