diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-29 21:32:21 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-29 21:32:21 +0900 |
| commit | 06fd5259507d32c72d303d4cff458f3d4756ea7e (patch) | |
| tree | 5ae5f33c5dfcddacbb67762c08438af1a6709e0d | |
| parent | :art: (diff) | |
| download | sharkey-06fd5259507d32c72d303d4cff458f3d4756ea7e.tar.gz sharkey-06fd5259507d32c72d303d4cff458f3d4756ea7e.tar.bz2 sharkey-06fd5259507d32c72d303d4cff458f3d4756ea7e.zip | |
Refactor
| -rw-r--r-- | src/client/app/desktop/views/pages/user/user.profile.vue | 4 |
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> |