diff --git a/ghost/admin/app/components/dashboard/v5/recent-activity.hbs b/ghost/admin/app/components/dashboard/v5/recent-activity.hbs index 3a4ef3de6b..7c5120669b 100644 --- a/ghost/admin/app/components/dashboard/v5/recent-activity.hbs +++ b/ghost/admin/app/components/dashboard/v5/recent-activity.hbs @@ -1,15 +1,8 @@ {{#if this.shouldDisplay}}
- {{!--
  • -
    Recent Activity
    -
  • --}}

    Recent activity

    {{#let (members-event-fetcher filter=(if (feature "membersActivityFeed") (members-event-filter excludeEmailEvents=true)) pageSize=5) as |eventsFetcher|}} - {{#if eventsFetcher.isLoading}} - Loading... - {{/if}} - {{#if eventsFetcher.isError}}

    There was an error loading events @@ -19,8 +12,10 @@

    {{/if}} - {{#unless (or eventsFetcher.isLoading eventsFetcher.isError)}} -
    + {{#if eventsFetcher.isLoading}} + Loading... + {{else}} +
    {{#if eventsFetcher.data}}
      {{#each eventsFetcher.data as |event|}} @@ -59,7 +54,7 @@ See all activity →
    {{/if}} - {{/unless}} + {{/if}} {{/let}}