diff --git a/ghost/admin/app/controllers/editor.js b/ghost/admin/app/controllers/editor.js index 00939832e8..b4615dd6f4 100644 --- a/ghost/admin/app/controllers/editor.js +++ b/ghost/admin/app/controllers/editor.js @@ -470,6 +470,8 @@ export default Controller.extend({ status = 'published'; } else if (this.willSchedule && !this.get('post.isPublished')) { status = 'scheduled'; + } else if (this.get('post.isSent')) { + status = 'sent'; } else { status = 'draft'; }