From 552800bde7e9914c063e331d7ff99c115b36a953 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Fri, 20 May 2022 09:34:25 +0200 Subject: [PATCH] Fixed dashboard recent posts not showing email only posts refs https://ghost.slack.com/archives/C02G9E68C/p1652982196273769 --- ghost/admin/app/components/dashboard/charts/recents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/components/dashboard/charts/recents.js b/ghost/admin/app/components/dashboard/charts/recents.js index dc34b86744..48b4a8fa7c 100644 --- a/ghost/admin/app/components/dashboard/charts/recents.js +++ b/ghost/admin/app/components/dashboard/charts/recents.js @@ -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