fix sorting of distributors by name

This commit is contained in:
Andrew Spinks
2012-04-22 12:58:40 +10:00
parent c3f7a7fd2c
commit 147985b94d

View File

@@ -7,6 +7,10 @@ module Spree
def load_data
@countries = Country.order(:name)
end
def collection
super.order(:name)
end
end
end
end