diff --git a/ghost/admin/app/controllers/editor.js b/ghost/admin/app/controllers/editor.js index 6d075bf3b3..670831b310 100644 --- a/ghost/admin/app/controllers/editor.js +++ b/ghost/admin/app/controllers/editor.js @@ -812,7 +812,7 @@ export default Controller.extend({ let actions, type, path; if (status === 'published' || status === 'scheduled') { - type = this.get('post.page') ? 'Page' : 'Post'; + type = this.get('post.displayName') === 'page' ? 'Page' : 'Post'; path = this.get('post.url'); actions = `View ${type}`; } else {