diff --git a/ghost/admin/app/components/gh-post-settings-menu.js b/ghost/admin/app/components/gh-post-settings-menu.js index 908b0571a2..2135575dda 100644 --- a/ghost/admin/app/components/gh-post-settings-menu.js +++ b/ghost/admin/app/components/gh-post-settings-menu.js @@ -150,7 +150,7 @@ export default class GhPostSettingsMenu extends Component { && this.post.emailOnly === false; if (this.post.isPublished === true) { - showPostHistory = this.post.hasEmail === false; + return showPostHistory && this.post.hasEmail === false; } return showPostHistory;