From: Anton Khorev Date: Sat, 16 Sep 2023 15:10:52 +0000 (+0300) Subject: Write button instead of link for 'Where is this?' X-Git-Tag: live~517^2~1 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/665f6d3d95f8a746b6453371ca76b9c3d30e8144 Write button instead of link for 'Where is this?' --- diff --git a/app/views/layouts/_search.html.erb b/app/views/layouts/_search.html.erb index dc72cea83..dc13414b7 100644 --- a/app/views/layouts/_search.html.erb +++ b/app/views/layouts/_search.html.erb @@ -5,7 +5,7 @@
<%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :autocomplete => "on", :class => "form-control form-control-sm", :dir => "auto" %>
- <%= link_to t("site.search.where_am_i"), "#", :class => "describe_location position-absolute end-0 me-1 btn btn-sm btn-outline-primary border-0 bg-transparent", :title => t("site.search.where_am_i_title") %> + <%= button_tag t("site.search.where_am_i"), :type => "button", :class => "describe_location position-absolute end-0 me-1 btn btn-sm btn-outline-primary border-0 bg-transparent", :title => t("site.search.where_am_i_title") %>
<%= submit_tag t("site.search.submit_text"), :class => "btn btn-sm btn-primary", :data => { :disable_with => false } %>