diff --git a/app/views/customers/_search.html.erb b/app/views/customers/_search.html.erb index 3c86485..f7d66aa 100644 --- a/app/views/customers/_search.html.erb +++ b/app/views/customers/_search.html.erb @@ -1,4 +1,4 @@ -<%= form_tag(customers_path, method: "get", id: "search-form") do %> +<%= form_tag(customers_path, method: "get", id: "customer-search-form") do %> <%= text_field_tag :search, params[:search], placeholder: t(:label_search_customers), autocomplete: "off" %> <%= submit_tag t(:label_search) %> <% end %> diff --git a/app/views/estimates/_search.html.erb b/app/views/estimates/_search.html.erb index a1529fb..cf214e2 100644 --- a/app/views/estimates/_search.html.erb +++ b/app/views/estimates/_search.html.erb @@ -1,4 +1,4 @@ -<%= form_tag(estimate_doc_path, method: "get") do %> +<%= form_tag(estimate_doc_path, method: "get", id: "estimate-search-form") do %> <%= text_field_tag :search, params[:search], placeholder: t(:label_search_estimates), autocomplete: "off" %> <%= submit_tag t(:label_search), formtarget: "_blank" %> <% end %>