diff --git a/webapp/components/Hashtag/Hashtag.vue b/webapp/components/Hashtag/Hashtag.vue index 91066eaf9..35762c81c 100644 --- a/webapp/components/Hashtag/Hashtag.vue +++ b/webapp/components/Hashtag/Hashtag.vue @@ -1,6 +1,6 @@ @@ -10,5 +10,10 @@ export default { props: { id: { type: String, required: true }, }, + computed: { + hashtagUrl() { + return `/?hashtag=${this.id}` + }, + }, }