From f505caa034c3e6f283c755b10aa1146741469007 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Mon, 8 Nov 2021 16:44:07 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20member=20activity=20feed?= =?UTF-8?q?=20not=20showing=20in=20dashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no issue - when switching from the user-specific `feature.launchComplete` flag to the global `settings.editorIsLaunchComplete` there was a missed replacement of `feature`->`settings` in the dashboard logic for showing the members activity feed --- ghost/admin/app/templates/dashboard.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/templates/dashboard.hbs b/ghost/admin/app/templates/dashboard.hbs index 5055ddfbbf..a2c3d2164c 100644 --- a/ghost/admin/app/templates/dashboard.hbs +++ b/ghost/admin/app/templates/dashboard.hbs @@ -287,7 +287,7 @@ {{/if}} - {{#unless (and this.session.user.isOwnerOnly (not this.feature.editorIsLaunchComplete))}} + {{#unless (and this.session.user.isOwnerOnly (not this.settings.editorIsLaunchComplete))}}

Activity feed