logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 4c59a174993f98f4326e8f952b416978d9fdefdf
parent: fd37957abda0a7467f22dff888a6134d249de134
Author: lain <lain@soykaf.club>
Date:   Fri, 10 Jul 2020 10:56:39 +0000

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

Diffstat:

Msrc/components/post_status_form/post_status_form.js2+-
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 @@ -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()