summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2019-05-09 15:42:56 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-05-09 15:42:56 +0900
commit1ff5151786d9c39ce4eb9ee6205334350a588792 (patch)
treea3f01d9454664b07a759d7962d172652169bec09 /src
parentUpdate README.md [AUTOGEN] (#4877) (diff)
downloadsharkey-1ff5151786d9c39ce4eb9ee6205334350a588792.tar.gz
sharkey-1ff5151786d9c39ce4eb9ee6205334350a588792.tar.bz2
sharkey-1ff5151786d9c39ce4eb9ee6205334350a588792.zip
Fix: みつけるで人気のタグが表示されない (#4883)
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/pages/explore.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/views/pages/explore.vue b/src/client/app/common/views/pages/explore.vue
index 67e92af445..de31ca36c4 100644
--- a/src/client/app/common/views/pages/explore.vue
+++ b/src/client/app/common/views/pages/explore.vue
@@ -13,8 +13,8 @@
<template #header><fa :icon="faHashtag" fixed-width/>{{ $t('popular-tags') }}</template>
<div class="vxjfqztj">
- <router-link v-for="tag in tagsLocal" :to="`/explore/tags/${tag.name}`" :key="'local:' + tag.name" class="local">{{ tag.name }}</router-link>
- <router-link v-for="tag in tagsRemote" :to="`/explore/tags/${tag.name}`" :key="'remote:' + tag.name">{{ tag.name }}</router-link>
+ <router-link v-for="tag in tagsLocal" :to="`/explore/tags/${tag.tag}`" :key="'local:' + tag.tag" class="local">{{ tag.tag }}</router-link>
+ <router-link v-for="tag in tagsRemote" :to="`/explore/tags/${tag.tag}`" :key="'remote:' + tag.tag">{{ tag.tag }}</router-link>
</div>
</ui-container>