Use parents scope if available.

environments/dev/deployments/119
Roger Braun 6 years ago
parent 7707048bff
commit d4f5b3feec

@ -23,7 +23,8 @@ const PostStatusForm = {
props: [
'replyTo',
'repliedUser',
'attentions'
'attentions',
'messageScope'
],
components: {
MediaUpload
@ -49,7 +50,7 @@ const PostStatusForm = {
newStatus: {
status: statusText,
files: [],
visibility: 'public'
visibility: this.messageScope || 'public'
},
caret: 0
}

@ -96,7 +96,7 @@
</div>
<div class="container" v-if="replying">
<div class="reply-left"/>
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying"/>
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" :message-scope="status.visibility" v-on:posted="toggleReplying"/>
</div>
</template>
</div>

Loading…
Cancel
Save