mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Changed ordering of mentions
refs https://github.com/TryGhost/Team/issues/2434
This commit is contained in:
parent
17e0c0b856
commit
f0cf740df5
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ export default class MentionsController extends Controller {
|
|||
|
||||
@task
|
||||
*loadMentionsTask() {
|
||||
const mentions = yield this.store.query('mention', {});
|
||||
const mentions = yield this.store.query('mention', {order: 'created_at desc'});
|
||||
this.mentionsList = mentions;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue