diff --git a/app/controllers/static_controller.rb b/app/controllers/static_controller.rb index 33afc69d..b3c272b6 100644 --- a/app/controllers/static_controller.rb +++ b/app/controllers/static_controller.rb @@ -3,6 +3,6 @@ class StaticController < ApplicationController end def about - @admins = User.where(admin: true) + @admins = User.where(admin: true).order(:id) end end