aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/post_status_form/post_status_form.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js
index 9995813e..b17fdaa1 100644
--- a/src/components/post_status_form/post_status_form.js
+++ b/src/components/post_status_form/post_status_form.js
@@ -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: []