aboutsummaryrefslogtreecommitdiff
path: root/src/components/extra_buttons/extra_buttons.vue
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-09-04 21:11:13 +0300
committerrinpatch <rinpatch@sdf.org>2019-09-04 21:11:13 +0300
commit1a5a7bbebf45e93dbd47a99bb4eb05a5be5979f1 (patch)
treedbac1ec5d0d69c7db57245d5d040741e0e6610cf /src/components/extra_buttons/extra_buttons.vue
parent66a34b7ecf65ded39882b9e4e7df9bbd2067afc3 (diff)
Set thread_muted for all statuses with the same conversation id on
status mute/unmute
Diffstat (limited to 'src/components/extra_buttons/extra_buttons.vue')
-rw-r--r--src/components/extra_buttons/extra_buttons.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/extra_buttons/extra_buttons.vue b/src/components/extra_buttons/extra_buttons.vue
index ed0f3aa4..6781a4f8 100644
--- a/src/components/extra_buttons/extra_buttons.vue
+++ b/src/components/extra_buttons/extra_buttons.vue
@@ -10,14 +10,14 @@
<div slot="popover">
<div class="dropdown-menu">
<button
- v-if="canMute && !status.muted"
+ v-if="canMute && !status.thread_muted"
class="dropdown-item dropdown-item-icon"
@click.prevent="muteConversation"
>
<i class="icon-eye-off" /><span>{{ $t("status.mute_conversation") }}</span>
</button>
<button
- v-if="canMute && status.muted"
+ v-if="canMute && status.thread_muted"
class="dropdown-item dropdown-item-icon"
@click.prevent="unmuteConversation"
>