diff options
| author | Vivian Lim <vivlim@pm.me> | 2018-06-27 23:55:29 -0700 |
|---|---|---|
| committer | Vivian Lim <vvnl@pm.me> | 2018-06-28 23:39:01 -0700 |
| commit | b3e122d31f95c5a130ce7c41970984502798903c (patch) | |
| tree | fb07d66e635defdbe2a2057129554870e0b164a8 /src/components/status/status.vue | |
| parent | 0554cac113555b948cdad3d9f14ec6f548c93c01 (diff) | |
Carry forward content warnings in replies
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index cffa8e26..09e6b54d 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -105,7 +105,13 @@ </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" :message-scope="status.visibility" v-on:posted="toggleReplying"/> + <post-status-form class="reply-body" + :reply-to="status.id" + :attentions="status.attentions" + :repliedUser="status.user" + :message-scope="status.visibility" + :parentSpoilerText="status.summary" + v-on:posted="toggleReplying"/> </div> </template> </div> |
