forked from AkkomaGang/akkoma-fe
correct linter problems
This commit is contained in:
parent
92a8ca0011
commit
f49229974a
1 changed files with 3 additions and 4 deletions
|
@ -176,7 +176,6 @@ const PostStatusForm = {
|
||||||
this.caret = selectionStart
|
this.caret = selectionStart
|
||||||
},
|
},
|
||||||
postStatus (newStatus) {
|
postStatus (newStatus) {
|
||||||
console.log(newStatus);
|
|
||||||
if (this.posting) { return }
|
if (this.posting) { return }
|
||||||
if (this.submitDisabled) { return }
|
if (this.submitDisabled) { return }
|
||||||
|
|
||||||
|
@ -208,7 +207,7 @@ const PostStatusForm = {
|
||||||
el.style.height = '16px'
|
el.style.height = '16px'
|
||||||
this.error = null
|
this.error = null
|
||||||
|
|
||||||
Object.keys(this.vis).forEach(x => this.vis[x].selected = false)
|
Object.keys(this.vis).forEach(function (x) { this.vis[x].selected = false })
|
||||||
this.vis.public.selected = true
|
this.vis.public.selected = true
|
||||||
} else {
|
} else {
|
||||||
this.error = data.error
|
this.error = data.error
|
||||||
|
@ -264,7 +263,7 @@ const PostStatusForm = {
|
||||||
},
|
},
|
||||||
changeVis (visibility) {
|
changeVis (visibility) {
|
||||||
console.log(visibility)
|
console.log(visibility)
|
||||||
Object.keys(this.vis).forEach(x => this.vis[x].selected = x == visibility)
|
Object.keys(this.vis).forEach(function (x) { this.vis[x].selected = x === visibility})
|
||||||
this.newStatus.visibility = visibility
|
this.newStatus.visibility = visibility
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue