diff --git a/webapp/components/Hashtag/Hashtag.vue b/webapp/components/Hashtag/Hashtag.vue index 44e5319f0..5e14965c8 100644 --- a/webapp/components/Hashtag/Hashtag.vue +++ b/webapp/components/Hashtag/Hashtag.vue @@ -12,7 +12,8 @@ export default { }, computed: { hashtagUrl() { - return `/?hashtag=${this.id}` + // Wolle return `/?hashtag=${this.id}` + return `/search/search-results?search=%23${this.id}` // hashtag as '%23' has to be used for '#' explicitly! otherwise it is interpreted as the site path hashtag }, }, }