diff --git a/ghost/admin/app/components/posts-list/modals/edit-posts-access.hbs b/ghost/admin/app/components/posts-list/modals/edit-posts-access.hbs
index a4e05e5157..a802ebc8ff 100644
--- a/ghost/admin/app/components/posts-list/modals/edit-posts-access.hbs
+++ b/ghost/admin/app/components/posts-list/modals/edit-posts-access.hbs
@@ -1,4 +1,4 @@
-
+
diff --git a/ghost/admin/app/components/posts-list/modals/edit-posts-access.js b/ghost/admin/app/components/posts-list/modals/edit-posts-access.js
index 80747151df..e585821802 100644
--- a/ghost/admin/app/components/posts-list/modals/edit-posts-access.js
+++ b/ghost/admin/app/components/posts-list/modals/edit-posts-access.js
@@ -6,12 +6,30 @@ import {tracked} from '@glimmer/tracking';
export default class EditPostsAccessModal extends Component {
@service store;
+ @service settings;
// We createa new post model to use the same validations as the post model
- @tracked post = this.store.createRecord('post', {
- visibility: 'public',
- tiers: []
- });
+ @tracked post = this.store.createRecord('post', {});
+
+ get selectionList() {
+ return this.args.data.selectionList;
+ }
+
+ @action
+ setup() {
+ if (this.selectionList.first && this.selectionList.isSingle) {
+ this.post.set('visibility', this.selectionList.first.visibility);
+ this.post.set('tiers', this.selectionList.first.tiers);
+ } else {
+ // Use default
+ this.post.set('visibility', this.settings.defaultContentVisibility);
+ this.post.set('tiers', this.settings.defaultContentVisibilityTiers.map((tier) => {
+ return {
+ id: tier
+ };
+ }));
+ }
+ }
async validate() {
// Mark as not new