web: fix notes not exporting from archive list multiple selection (#10230)

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2026-08-14 08:28:42 +05:00
committed by GitHub
parent d647eb8187
commit 8d56564221

View File

@@ -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))
);
}
}))