diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-07-10 13:48:37 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-07-10 13:48:37 +0300 |
| commit | 5734dd05a0b1c8a266252d46371933102780c5e9 (patch) | |
| tree | 4bed37de53bc8fe2ad858f08b39e7eedd7023afc /src | |
| parent | c1a20079bef51dc38cb9826cee5bb2fbfe2cf68b (diff) | |
change misnamed member field check to actually disable sending
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index b0d94555..1c0accac 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() |
