This commit is contained in:
mateuswetah 2024-07-04 16:17:49 -03:00
parent 0b05681aa9
commit 267bb40635
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@
], ],
data() { data() {
return { return {
selectedStatus: !this.$adminOptions.hideItemEditionStatusPublishOption ? 'publish' : 'private' selectedStatus: this.currentUserCanPublish ? ( !this.$adminOptions.hideItemEditionStatusPublishOption ? 'publish' : 'private' ) : 'draft'
} }
}, },
computed: { computed: {