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: []