aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorhaappi <np.nimit.patelp@gmail.com>2025-05-18 12:39:39 -0500
committerGitHub <noreply@github.com>2025-05-18 18:39:39 +0100
commitc2e26f9f1c85c83fd24041328c23b97695996e12 (patch)
tree72cdebaeb40a636500d213fe624ad4547cc36be6 /apps
parent3505cb7d6416d101a4fcb1be27fc22e0171bacd2 (diff)
downloadkarakeep-c2e26f9f1c85c83fd24041328c23b97695996e12.tar.zst
fix(web): Fix tag drag and drop merging on firefox .Fixes #1016 (#1309)
Diffstat (limited to 'apps')
-rw-r--r--apps/web/components/dashboard/tags/TagPill.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/tags/TagPill.tsx b/apps/web/components/dashboard/tags/TagPill.tsx
index c6b08d64..aee3e66e 100644
--- a/apps/web/components/dashboard/tags/TagPill.tsx
+++ b/apps/web/components/dashboard/tags/TagPill.tsx
@@ -81,6 +81,7 @@ export function TagPill({
}
href={`/dashboard/tags/${id}`}
data-id={id}
+ draggable={false}
>
{name} <Separator orientation="vertical" /> {count}
</Link>
@@ -113,4 +114,4 @@ export function TagPill({
{pill}
</Draggable>
);
-}
+} \ No newline at end of file