forked from AkkomaGang/akkoma-fe
Move submitDisable into data.
It's not a prop, these are only for passing data, not for local data.
This commit is contained in:
parent
cb940a8742
commit
b812adf0ba
1 changed files with 2 additions and 3 deletions
|
@ -23,14 +23,12 @@ const PostStatusForm = {
|
|||
props: [
|
||||
'replyTo',
|
||||
'repliedUser',
|
||||
'attentions',
|
||||
'submitDisabled'
|
||||
'attentions'
|
||||
],
|
||||
components: {
|
||||
MediaUpload
|
||||
},
|
||||
data () {
|
||||
this.submitDisabled = false
|
||||
let statusText = ''
|
||||
|
||||
if (this.replyTo) {
|
||||
|
@ -39,6 +37,7 @@ const PostStatusForm = {
|
|||
}
|
||||
|
||||
return {
|
||||
submitDisabled: false,
|
||||
newStatus: {
|
||||
status: statusText,
|
||||
files: []
|
||||
|
|
Loading…
Reference in a new issue