mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
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:
commit
3cb2a03170
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user