From 219b0430d8fbaaf54fbf984330f703145195457f Mon Sep 17 00:00:00 2001 From: Katsuya HIDAKA Date: Mon, 30 Mar 2026 00:15:00 +0900 Subject: Remove unnecessary list marker insertion from search field --- app/views/search/index.html.erb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb index b092bbae0..db83be00f 100644 --- a/app/views/search/index.html.erb +++ b/app/views/search/index.html.erb @@ -3,10 +3,7 @@ <%= form_tag({}, :method => :get, :id => 'search-form') do %>
<%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %> -

<%= text_field_tag 'q', @question, :size => 60, :id => 'search-input', - :data => { - :auto_complete => true - }.merge(list_autofill_data_attributes) %> +

<%= text_field_tag 'q', @question, :size => 60, :id => 'search-input', :data => { :auto_complete => true } %> <%= project_select_tag %> <%= hidden_field_tag 'all_words', '', :id => nil %> -- 2.52.0