diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-10-25 01:21:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-25 01:21:41 +0900 |
| commit | 254cfaea284d12f188e28f56a0cec863e3177a49 (patch) | |
| tree | 5ba89f9316cf54724af75ee919ae7339edc5af0e /src/client/widgets | |
| parent | Update dependencies :rocket: (diff) | |
| download | misskey-254cfaea284d12f188e28f56a0cec863e3177a49.tar.gz misskey-254cfaea284d12f188e28f56a0cec863e3177a49.tar.bz2 misskey-254cfaea284d12f188e28f56a0cec863e3177a49.zip | |
自前ルーティング (#6759)
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
Diffstat (limited to 'src/client/widgets')
| -rw-r--r-- | src/client/widgets/trends.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/widgets/trends.vue b/src/client/widgets/trends.vue index 17262445ef..9510bf205c 100644 --- a/src/client/widgets/trends.vue +++ b/src/client/widgets/trends.vue @@ -7,7 +7,7 @@ <transition-group tag="div" name="chart" class="tags" v-else> <div v-for="stat in stats" :key="stat.tag"> <div class="tag"> - <router-link class="a" :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link> + <MkA class="a" :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</MkA> <p>{{ $t('nUsersMentioned', { n: stat.usersCount }) }}</p> </div> <MkMiniChart class="chart" :src="stat.chart"/> |