mirror of
https://github.com/redmine/redmine.git
synced 2026-05-06 15:47:01 +02:00
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
This commit is contained in:
@@ -3,10 +3,7 @@
|
||||
<%= form_tag({}, :method => :get, :id => 'search-form') do %>
|
||||
<div class="box">
|
||||
<%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %>
|
||||
<p><%= text_field_tag 'q', @question, :size => 60, :id => 'search-input',
|
||||
:data => {
|
||||
:auto_complete => true
|
||||
}.merge(list_autofill_data_attributes) %>
|
||||
<p><%= text_field_tag 'q', @question, :size => 60, :id => 'search-input', :data => { :auto_complete => true } %>
|
||||
<%= project_select_tag %>
|
||||
<%= hidden_field_tag 'all_words', '', :id => nil %>
|
||||
<label><%= check_box_tag 'all_words', 1, @all_words %> <%= l(:label_all_words) %></label>
|
||||
|
||||
Reference in New Issue
Block a user