Change link of hashtag component to the new search page

This commit is contained in:
Wolfgang Huß 2021-03-31 16:04:56 +02:00
parent ab26f9fb23
commit 0a08b94446

View File

@ -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
},
},
}