diff options
| author | kaniini <nenolod@gmail.com> | 2018-08-24 21:51:54 +0000 |
|---|---|---|
| committer | kaniini <nenolod@gmail.com> | 2018-08-24 21:51:54 +0000 |
| commit | 55650ff7ea9867cdb8adf7077b36bbb8c7bfcb75 (patch) | |
| tree | 54f5294c1bc470aca73c46ad985bbacc8352ff51 /src/components/status/status.vue | |
| parent | 14db3f279daed82011bdcc2bbad21450c08a4487 (diff) | |
| parent | da9629486679345689ab75a0c663c16887e524f6 (diff) | |
Merge branch 'reply-visibility' into 'develop'
Add settings for changing the visibility of replies in the timeline.
See merge request pleroma/pleroma-fe!314
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index e7d5ed7a..2bc44ee7 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,5 +1,5 @@ <template> - <div class="status-el" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]"> + <div class="status-el" v-if="!hideReply" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]"> <template v-if="muted && !noReplyLinks"> <div class="media status container muted"> <small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small> |
