summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-10-29 21:32:21 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-10-29 21:32:21 +0900
commit06fd5259507d32c72d303d4cff458f3d4756ea7e (patch)
tree5ae5f33c5dfcddacbb67762c08438af1a6709e0d /src
parent:art: (diff)
downloadsharkey-06fd5259507d32c72d303d4cff458f3d4756ea7e.tar.gz
sharkey-06fd5259507d32c72d303d4cff458f3d4756ea7e.tar.bz2
sharkey-06fd5259507d32c72d303d4cff458f3d4756ea7e.zip
Refactor
Diffstat (limited to 'src')
-rw-r--r--src/client/app/desktop/views/pages/user/user.profile.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/pages/user/user.profile.vue b/src/client/app/desktop/views/pages/user/user.profile.vue
index 2a104bffad..d0d54d273f 100644
--- a/src/client/app/desktop/views/pages/user/user.profile.vue
+++ b/src/client/app/desktop/views/pages/user/user.profile.vue
@@ -11,11 +11,11 @@
<div class="action-form">
<ui-button @click="user.isMuted ? unmute() : mute()" v-if="$store.state.i.id != user.id">
<span v-if="user.isMuted">%fa:eye% %i18n:@unmute%</span>
- <span v-if="!user.isMuted">%fa:eye-slash% %i18n:@mute%</span>
+ <span v-else>%fa:eye-slash% %i18n:@mute%</span>
</ui-button>
<ui-button @click="user.isBlocking ? unblock() : block()" v-if="$store.state.i.id != user.id">
<span v-if="user.isBlocking">%fa:user% %i18n:@unblock%</span>
- <span v-if="!user.isBlocking">%fa:user-slash% %i18n:@block%</span>
+ <span v-else>%fa:user-slash% %i18n:@block%</span>
</ui-button>
<ui-button @click="list">%fa:list% %i18n:@push-to-a-list%</ui-button>
</div>