diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-10 00:30:58 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-10 00:30:58 +0900 |
| commit | 69eefc14251e210c874ef9fdc841981b22a328e6 (patch) | |
| tree | c8274445b596cdb09fdd83f3ed93a32261e10174 /src | |
| parent | Fix #3187 (diff) | |
| download | sharkey-69eefc14251e210c874ef9fdc841981b22a328e6.tar.gz sharkey-69eefc14251e210c874ef9fdc841981b22a328e6.tar.bz2 sharkey-69eefc14251e210c874ef9fdc841981b22a328e6.zip | |
[Client] Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/pages/user/user.profile.vue | 2 |
1 files changed, 1 insertions, 1 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 41e2fa6e5e..eba492d4f0 100644 --- a/src/client/app/desktop/views/pages/user/user.profile.vue +++ b/src/client/app/desktop/views/pages/user/user.profile.vue @@ -4,7 +4,7 @@ <mk-follow-button :user="user" size="big"/> <p class="followed" v-if="user.isFollowed">{{ $t('follows-you') }}</p> <p class="stalk" v-if="user.isFollowing"> - <span v-if="user.isStalking">{{ $t('stalking% <a @click="unstalk"><fa icon="meh"/> %i18n:@unstalk') }}</a></span> + <span v-if="user.isStalking">{{ $t('stalking') }} <a @click="unstalk"><fa icon="meh"/> {{ $t('unstalk') }}</a></span> <span v-if="!user.isStalking"><a @click="stalk"><fa icon="user-secret"/> {{ $t('stalk') }}</a></span> </p> </div> |