aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-07-10 10:56:39 +0000
committerlain <lain@soykaf.club>2020-07-10 10:56:39 +0000
commit4c59a174993f98f4326e8f952b416978d9fdefdf (patch)
treed399e89f80ae7940c9c2c89356099ffaa385bcd2
parentfd37957abda0a7467f22dff888a6134d249de134 (diff)
parent5734dd05a0b1c8a266252d46371933102780c5e9 (diff)
Merge branch 'fix/ctrl-enter-before-chat-loading-breaks' into 'develop'
fix #891 Fix early send killing the chat Closes #891 See merge request pleroma/pleroma-fe!1178
-rw-r--r--src/components/post_status_form/post_status_form.js2
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()