From 2507ca02ca5d26e7904d6c5ccec3f244b10d4596 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Thu, 16 Apr 2026 07:05:37 +0000 Subject: [PATCH] Remove unnecessary list marker insertion from search field (#43950). Patch by Katsuya HIDAKA (user:hidakatsuya). git-svn-id: https://svn.redmine.org/redmine/trunk@24585 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- 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 %>