diff --git a/app/views/queries/_filters.rhtml b/app/views/queries/_filters.rhtml index a31c1fe..d9b9bbf 100644 --- a/app/views/queries/_filters.rhtml +++ b/app/views/queries/_filters.rhtml @@ -87,22 +87,23 @@ Event.observe(document,"dom:loaded", apply_filters_observer); - <%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), query.operator_for(field)), :id => "operators_#{field}", :onchange => "toggle_operator('#{field}');", :class => "select-small", :style => "vertical-align: top;" %> + <%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), query.operator_for(field)), :id => "operators_#{field}", :onchange => "toggle_operator('#{field}');", :style => "vertical-align: top;" %> @@ -115,7 +116,6 @@ Event.observe(document,"dom:loaded", apply_filters_observer); <%= label_tag('add_filter_select', l(:label_filter_add)) %> <%= select_tag 'add_filter_select', options_for_select([["",""]] + query.available_filters.sort{|a,b| a[1][:order]<=>b[1][:order]}.collect{|field| [ field[1][:name] || l(("field_"+field[0].to_s.gsub(/_id$/, "")).to_sym), field[0]] unless query.has_filter?(field[0])}.compact), :onchange => "add_filter();", - :class => "select-small", :name => nil %>