From 8d565642210fb74c8c797549a775f69e01aeab98 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Fri, 14 Aug 2026 08:28:42 +0500 Subject: [PATCH] web: fix notes not exporting from archive list multiple selection (#10230) Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/src/components/note/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/note/index.tsx b/apps/web/src/components/note/index.tsx index 0736f9a1d..d2a424aaf 100644 --- a/apps/web/src/components/note/index.tsx +++ b/apps/web/src/components/note/index.tsx @@ -550,7 +550,7 @@ export const noteMenuItems: ( await exportNotes( format.type, - db.notes.all.where((eb) => eb("id", "in", ids)) + db.notes.exportable.where((eb) => eb("id", "in", ids)) ); } }))