diff --git a/ghost/admin/app/components/modal-post-history.hbs b/ghost/admin/app/components/modal-post-history.hbs
index ebb39cc25d..4f70133040 100644
--- a/ghost/admin/app/components/modal-post-history.hbs
+++ b/ghost/admin/app/components/modal-post-history.hbs
@@ -50,7 +50,7 @@
Latest
{{/if}}
{{#if revision.published}}
- Publised
+ Published
{{/if}}
{{revision.author.name}}
diff --git a/ghost/admin/app/components/modal-post-history.js b/ghost/admin/app/components/modal-post-history.js
index d0a0499843..94a209d13d 100644
--- a/ghost/admin/app/components/modal-post-history.js
+++ b/ghost/admin/app/components/modal-post-history.js
@@ -62,7 +62,9 @@ export default class ModalPostHistory extends Component {
feature_image: revision.get('featureImage'),
author: {
name: revision.get('author.name') || 'Anonymous'
- }
+ },
+ postStatus: revision.get('postStatus'),
+ reason: revision.get('reason')
};
});
}
diff --git a/ghost/admin/app/models/post-revision.js b/ghost/admin/app/models/post-revision.js
index d6e73df410..24c15b77c8 100644
--- a/ghost/admin/app/models/post-revision.js
+++ b/ghost/admin/app/models/post-revision.js
@@ -7,4 +7,6 @@ export default class PostRevisionModel extends Model {
@attr('string') featureImage;
@attr('moment-utc') createdAt;
@belongsTo('user') author;
+ @attr('string') postStatus;
+ @attr('string') reason;
}
diff --git a/ghost/admin/app/serializers/post-revision.js b/ghost/admin/app/serializers/post-revision.js
index fe4a043f3b..740e67a241 100644
--- a/ghost/admin/app/serializers/post-revision.js
+++ b/ghost/admin/app/serializers/post-revision.js
@@ -9,7 +9,9 @@ export default class PostRevisionSerializer extends ApplicationSerializer.extend
lexical: {key: 'lexical'},
title: {key: 'title'},
createdAt: {key: 'created_at'},
- featureImage: {key: 'feature_image'},
- postIdLocal: {key: 'post_id'}
+ postIdLocal: {key: 'post_id'},
+ postStatus: {key: 'post_status'},
+ reason: {key: 'reason'},
+ featureImage: {key: 'feature_image'}
};
}