Fixed dashboard recent posts not showing email only posts

refs https://ghost.slack.com/archives/C02G9E68C/p1652982196273769
This commit is contained in:
Simon Backx 2022-05-20 09:34:25 +02:00
parent 7a5f15414b
commit 552800bde7

View File

@ -12,7 +12,7 @@ export default class Recents extends Component {
@action
async loadPosts() {
this.posts = await this.store.query('post', {limit: 5, filter: 'status:published', order: 'published_at desc'});
this.posts = await this.store.query('post', {limit: 5, filter: 'status:[published,sent]', order: 'published_at desc'});
}
@action