diff --git a/web/app/views/clients/_web_filter.html.haml b/web/app/views/clients/_web_filter.html.haml index 6d36e4a54..9fd8b9150 100644 --- a/web/app/views/clients/_web_filter.html.haml +++ b/web/app/views/clients/_web_filter.html.haml @@ -27,7 +27,7 @@ =content_tag(:div, :class => 'filter-element wrapper') do -if :musician==filter_label || :jamtrack==filter_label / =content_tag(:div, 'Instrument:', :class => 'filter-element desc instrument-selector') - =select_tag("#{filter_label}_instrument", options_for_select([['Any Instrument', '']].concat(JamRuby::Instrument.all.collect { |ii| [ii.description, ii.id] })), {:class=> "easydropdown"}) | + =select_tag("#{filter_label}_instrument", options_for_select([['Any Instrument', '']].concat(JamRuby::Instrument.order('description').collect { |ii| [ii.description, ii.id] })), {:class=> "easydropdown"}) | -if :feed==filter_label / =content_tag(:div, 'Include Dates:', :class => 'filter-element desc') =select_tag("#{filter_label}_date", options_for_select(Search::DATE_OPTS), {:class => "easydropdown"})