From 0a08b94446c8d41b6e19098bb20a9d68a391338f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Wed, 31 Mar 2021 16:04:56 +0200 Subject: [PATCH] Change link of hashtag component to the new search page --- webapp/components/Hashtag/Hashtag.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }, }, }