summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2018-07-26 13:47:06 +0900
committerGitHub <noreply@github.com>2018-07-26 13:47:06 +0900
commit04de0e9a500218851efbdee846dd083485e27f9c (patch)
treeeb3bcd42b50fd9d1266f29a7b8fff8e1f04dc0f5 /src/client
parentMerge pull request #1983 from mei23/mei-osct (diff)
downloadmisskey-04de0e9a500218851efbdee846dd083485e27f9c.tar.gz
misskey-04de0e9a500218851efbdee846dd083485e27f9c.tar.bz2
misskey-04de0e9a500218851efbdee846dd083485e27f9c.zip
Update hashtags.vue
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/common/views/widgets/hashtags.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/widgets/hashtags.vue b/src/client/app/common/views/widgets/hashtags.vue
index 2065bd407c..56520400b6 100644
--- a/src/client/app/common/views/widgets/hashtags.vue
+++ b/src/client/app/common/views/widgets/hashtags.vue
@@ -11,7 +11,7 @@
<div>
<div v-for="stat in stats" :key="stat.tag">
<div class="tag">
- <router-link :to="`/tags/${ stat.tag }`" :title="stat.tag">#{{ stat.tag }}</router-link>
+ <router-link :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link>
<p>{{ '%i18n:@count%'.replace('{}', stat.usersCount) }}</p>
</div>
<x-chart class="chart" :src="stat.chart"/>