1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 19:04:01 +00:00

fix logic

This commit is contained in:
jaasen-livefront
2025-11-24 17:54:09 -08:00
parent 90fce663a0
commit 2088d578b4

View File

@@ -268,7 +268,7 @@ export class IndividualVaultExportService
private buildCsvExport(decFolders: FolderView[], decCiphers: CipherView[]): string {
const foldersMap = new Map<string, FolderView>();
decFolders.forEach((f) => {
if (!f.id) {
if (f.id) {
foldersMap.set(f.id, f);
}
});