Changed ordering of mentions

refs https://github.com/TryGhost/Team/issues/2434
This commit is contained in:
Djordje Vlaisavljevic 2023-01-24 22:56:27 +00:00
parent 17e0c0b856
commit f0cf740df5

View File

@ -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;
}
}