From 5734dd05a0b1c8a266252d46371933102780c5e9 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Fri, 10 Jul 2020 13:48:37 +0300 Subject: [PATCH] change misnamed member field check to actually disable sending --- src/components/post_status_form/post_status_form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index b0d945557a..1c0accacdf 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -216,7 +216,7 @@ const PostStatusForm = { methods: { async postStatus (event, newStatus, opts = {}) { if (this.posting) { return } - if (this.submitDisabled) { return } + if (this.disableSubmit) { return } if (this.emojiInputShown) { return } if (this.submitOnEnter) { event.stopPropagation()