diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-05-09 15:42:56 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-09 15:42:56 +0900 |
| commit | 1ff5151786d9c39ce4eb9ee6205334350a588792 (patch) | |
| tree | a3f01d9454664b07a759d7962d172652169bec09 /src/client | |
| parent | Update README.md [AUTOGEN] (#4877) (diff) | |
| download | sharkey-1ff5151786d9c39ce4eb9ee6205334350a588792.tar.gz sharkey-1ff5151786d9c39ce4eb9ee6205334350a588792.tar.bz2 sharkey-1ff5151786d9c39ce4eb9ee6205334350a588792.zip | |
Fix: みつけるで人気のタグが表示されない (#4883)
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/pages/explore.vue | 4 |
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> |