diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-11-27 21:36:21 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-11-27 21:36:21 +0000 |
| commit | adde8099095a7be88e5027f1010e1a40e8748149 (patch) | |
| tree | 21a16471385be9f138eb09903b73e2a551168296 /apps/web | |
| parent | 5bea5d39f8e5d6245bc7e6033bba220ddb561f4c (diff) | |
| download | karakeep-adde8099095a7be88e5027f1010e1a40e8748149.tar.zst | |
fix: hide archived checkbox in shared lists
Diffstat (limited to '')
| -rw-r--r-- | apps/web/components/dashboard/lists/ListOptions.tsx | 2 |
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 36bb097b..804e2e8b 100644 --- a/apps/web/components/dashboard/lists/ListOptions.tsx +++ b/apps/web/components/dashboard/lists/ListOptions.tsx @@ -108,7 +108,7 @@ export function ListOptions({ ) : ( <Square className="size-4" /> ), - visible: true, + visible: isOwner, disabled: false, onClick: onClickShowArchived, }, |
