diff --git a/ghost/admin/app/components/dashboard/dashboard-v5.hbs b/ghost/admin/app/components/dashboard/dashboard-v5.hbs index e272526650..c21ea23bd7 100644 --- a/ghost/admin/app/components/dashboard/dashboard-v5.hbs +++ b/ghost/admin/app/components/dashboard/dashboard-v5.hbs @@ -69,7 +69,7 @@

Recent posts

- +
diff --git a/ghost/admin/app/components/dashboard/v5/recent-posts.hbs b/ghost/admin/app/components/dashboard/v5/recent-posts.hbs new file mode 100644 index 0000000000..a9bd48c8a8 --- /dev/null +++ b/ghost/admin/app/components/dashboard/v5/recent-posts.hbs @@ -0,0 +1 @@ +Recent posts WIP \ No newline at end of file diff --git a/ghost/admin/app/components/dashboard/v5/recent-posts.js b/ghost/admin/app/components/dashboard/v5/recent-posts.js new file mode 100644 index 0000000000..e39e46c9bf --- /dev/null +++ b/ghost/admin/app/components/dashboard/v5/recent-posts.js @@ -0,0 +1,6 @@ +import Component from '@glimmer/component'; +import {inject as service} from '@ember/service'; + +export default class RecentPosts extends Component { + @service dashboardStats; +}