diff --git a/components/tag/TagCard.vue b/components/tag/TagCard.vue index 7ba468ae..60a70eb2 100644 --- a/components/tag/TagCard.vue +++ b/components/tag/TagCard.vue @@ -7,7 +7,10 @@ const { tag: mastodon.v1.Tag }>() -const to = $computed(() => new URL(tag.url).pathname) +const to = $computed(() => { + const { hostname, pathname } = new URL(tag.url) + return `/${hostname}${pathname}` +})