diff options
| author | aka <0xcebb@protonmail.ch> | 2018-01-31 14:48:09 -0300 |
|---|---|---|
| committer | aka <0xcebb@protonmail.ch> | 2018-01-31 14:48:09 -0300 |
| commit | 84b0d54cd01898f684fc2f08b5d1034375e02bb1 (patch) | |
| tree | 232bfbf14542e17220634bd5a405917870f6b178 | |
| parent | 33d828d04825d50ba0f21451e80b62e8fb7af4c9 (diff) | |
Fixes issue #58
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index acc97c86..59c14eac 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -104,6 +104,7 @@ const PostStatusForm = { }, postStatus (newStatus) { if (this.posting) { return } + if (this.submitDisabled) { return } if (this.newStatus.status === '') { if (this.newStatus.files.length > 0) { |
