forked from AkkomaGang/akkoma-fe
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:
commit
4c59a17499
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue