diff --git a/app/helpers/officing_helper.rb b/app/helpers/officing_helper.rb index eb7513e87..2cfebf832 100644 --- a/app/helpers/officing_helper.rb +++ b/app/helpers/officing_helper.rb @@ -13,6 +13,7 @@ module OfficingHelper officer_assignments.each do |oa| options << ["#{oa.booth_assignment.booth.name}", oa.id] end + options.sort! {|x,y| x[0]<=>y[0]} options_for_select(options, params[:oa]) end