mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
Roles drop down sorted by ID
closes #3391 - Changed sort order to ID instead of name
This commit is contained in:
parent
719d90da46
commit
25b20bb2fe
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue