summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-09 21:42:36 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-09 21:42:36 +0900
commitd81c87af22daa93e34366763c174dcefcd9a7266 (patch)
treeca256a95c36d4bf2bb9ab7a5eb53f45cefef6a00 /src/client
parent10.46.0 (diff)
downloadsharkey-d81c87af22daa93e34366763c174dcefcd9a7266.tar.gz
sharkey-d81c87af22daa93e34366763c174dcefcd9a7266.tar.bz2
sharkey-d81c87af22daa93e34366763c174dcefcd9a7266.zip
[Client] Fix bug
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/common/views/components/trends.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/trends.vue b/src/client/app/common/views/components/trends.vue
index 2e16967076..f55f540507 100644
--- a/src/client/app/common/views/components/trends.vue
+++ b/src/client/app/common/views/components/trends.vue
@@ -7,7 +7,7 @@
<div v-for="stat in stats" :key="stat.tag">
<div class="tag">
<router-link :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link>
- <p>{{ this.$t('count').replace('{}', stat.usersCount) }}</p>
+ <p>{{ $t('count').replace('{}', stat.usersCount) }}</p>
</div>
<x-chart class="chart" :src="stat.chart"/>
</div>