commit
						0995d5c5a2
					
				|  | @ -92,7 +92,7 @@ export default Vue.component('misskey-flavored-markdown', { | |||
| 				case 'hashtag': | ||||
| 					return createElement('a', { | ||||
| 						attrs: { | ||||
| 							href: `${url}/tags/${token.hashtag}`, | ||||
| 							href: `${url}/tags/${encodeURIComponent(token.hashtag)}`, | ||||
| 							target: '_blank' | ||||
| 						} | ||||
| 					}, token.content); | ||||
|  |  | |||
|  | @ -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"/> | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue