diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index f830048e..f4341cfa 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -706,7 +706,11 @@ const PostStatusForm = { return propsToNative(props) }, saveDraft () { - if (!this.saveInhibited) { + if (!this.saveInhibited && + (this.newStatus.status || + this.newStatus.files?.length || + this.newStatus.hasPoll + )) { this.$store.dispatch('addOrSaveDraft', { draft: this.newStatus }) .then(id => { if (this.newStatus.id !== id) {