diff --git a/ghost/admin/app/components/gh-publishmenu-draft.js b/ghost/admin/app/components/gh-publishmenu-draft.js index d275755926..02579f80fa 100644 --- a/ghost/admin/app/components/gh-publishmenu-draft.js +++ b/ghost/admin/app/components/gh-publishmenu-draft.js @@ -25,15 +25,15 @@ export default class GhPublishMenuDraftComponent extends Component { } get nextActionName() { - return this.args.post.get('emailOnly') ? 'send' : 'publish'; + return this.args.post.emailOnly ? 'send' : 'publish'; } get showEmailSection() { - return this.args.canSendEmail && this.args.post.get('emailRecipientFilter') !== 'none'; + return this.args.canSendEmail && this.args.post.emailRecipientFilter !== 'none'; } get showEmailOnlyInput() { - return this.feature.get('emailOnlyPosts') && this.args.post.get('isPost'); + return this.feature.emailOnlyPosts && this.args.post.isPost; } constructor() {