aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-11-23 00:57:30 +0000
committerMohamed Bassem <me@mbassem.com>2025-11-23 11:29:42 +0000
commit2b38c0060af39b42e1fe2011a3dd9b1c0076a3af (patch)
tree8a3ec5f82afdfa852341be24070d81ce7f702746 /apps
parente4db9bf2725f1714f273332f0a444ec940aae1a8 (diff)
downloadkarakeep-2b38c0060af39b42e1fe2011a3dd9b1c0076a3af.tar.zst
fix: hide manage collaborators option for smart lists
Diffstat (limited to 'apps')
-rw-r--r--apps/web/components/dashboard/lists/ListOptions.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/lists/ListOptions.tsx b/apps/web/components/dashboard/lists/ListOptions.tsx
index b80ac680..36bb097b 100644
--- a/apps/web/components/dashboard/lists/ListOptions.tsx
+++ b/apps/web/components/dashboard/lists/ListOptions.tsx
@@ -80,7 +80,7 @@ export function ListOptions({
? t("lists.collaborators.manage")
: t("lists.collaborators.view"),
icon: <Users className="size-4" />,
- visible: true, // Always visible for all roles
+ visible: list.type === "manual",
disabled: false,
onClick: () => setCollaboratorsModalOpen(true),
},