mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
🐛 Fixed member activity feed not showing in dashboard
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
This commit is contained in:
parent
9ef710e500
commit
6c6011ff65
@ -287,7 +287,7 @@
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#unless (and this.session.user.isOwnerOnly (not this.feature.editorIsLaunchComplete))}}
|
||||
{{#unless (and this.session.user.isOwnerOnly (not this.settings.editorIsLaunchComplete))}}
|
||||
<div class="gh-dashboard-box grey activity-feed">
|
||||
<h4 class="gh-dashboard-header">Activity feed</h4>
|
||||
<div class="content">
|
||||
|
Loading…
Reference in New Issue
Block a user