diff options
-rw-r--r-- | app/controllers/bazaar_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/bazaar_controller.rb b/app/controllers/bazaar_controller.rb index b699d28..b9a8f21 100644 --- a/app/controllers/bazaar_controller.rb +++ b/app/controllers/bazaar_controller.rb @@ -1,7 +1,7 @@ class BazaarController < ApplicationController def index @bazaar_orders = BazaarOrder.all - @items = Item.all + @items = Item.all.order(:name) end def create_order |