aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/bookmarks
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2024-04-25 20:15:15 +0100
committerGitHub <noreply@github.com>2024-04-25 20:15:15 +0100
commitd07f2c90065f53d36a3fc0e7db54c32d54a2a332 (patch)
tree27102aeb30ee9798ca639517ff577bc7d135a4b4 /apps/web/components/dashboard/bookmarks
parentda6df7c7853e9c8350e52d6f4c17021667caf8b8 (diff)
downloadkarakeep-d07f2c90065f53d36a3fc0e7db54c32d54a2a332.tar.zst
feature(web): Add ability to rename, merge and fast delete tags. Fixes #105 (#125)
* feature(web): Allow deleting tags from the all tags page * feature(web): Add ability to rename, merge and fast delete tags. Fixes #105
Diffstat (limited to 'apps/web/components/dashboard/bookmarks')
-rw-r--r--apps/web/components/dashboard/bookmarks/TagList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/bookmarks/TagList.tsx b/apps/web/components/dashboard/bookmarks/TagList.tsx
index ff63d110..ccf3bf09 100644
--- a/apps/web/components/dashboard/bookmarks/TagList.tsx
+++ b/apps/web/components/dashboard/bookmarks/TagList.tsx
@@ -32,7 +32,7 @@ export default function TagList({
badgeVariants({ variant: "outline" }),
"text-nowrap font-normal hover:bg-foreground hover:text-secondary",
)}
- href={`/dashboard/tags/${t.name}`}
+ href={`/dashboard/tags/${t.id}`}
>
{t.name}
</Link>