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
This commit is contained in:
lain 2020-07-10 10:56:39 +00:00
commit 4c59a17499

View file

@ -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()