forked from AkkomaGang/akkoma-fe
change misnamed member field check to actually disable sending
This commit is contained in:
parent
c1a20079be
commit
5734dd05a0
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ const PostStatusForm = {
|
||||||
methods: {
|
methods: {
|
||||||
async postStatus (event, newStatus, opts = {}) {
|
async postStatus (event, newStatus, opts = {}) {
|
||||||
if (this.posting) { return }
|
if (this.posting) { return }
|
||||||
if (this.submitDisabled) { return }
|
if (this.disableSubmit) { return }
|
||||||
if (this.emojiInputShown) { return }
|
if (this.emojiInputShown) { return }
|
||||||
if (this.submitOnEnter) {
|
if (this.submitOnEnter) {
|
||||||
event.stopPropagation()
|
event.stopPropagation()
|
||||||
|
|
Loading…
Reference in a new issue