Merge pull request #3393 from joeldrapper/sort-roles-dropdown

Fixed role sort order in the invite a new user drop down list
This commit is contained in:
Hannah Wolfe 2014-07-27 19:39:06 +01:00
commit 3cb2a03170

View File

@ -14,7 +14,7 @@ var InviteNewUserController = Ember.Controller.extend({
self = this;
roles.promise = this.store.find('role', { permissions: 'assign' }).then(function (roles) {
return roles.rejectBy('name', 'Owner').sortBy('name');
return roles.rejectBy('name', 'Owner').sortBy('id');
}).then(function (roles) {
// After the promise containing the roles has been resolved and the array
// has been sorted, explicitly set the selectedRole for the Ember.Select.