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

fix folder with id export

This commit is contained in:
jaasen-livefront
2025-11-07 14:52:49 -08:00
parent fe13082137
commit 4bd3edf0a6

View File

@@ -7,6 +7,6 @@ export class FolderWithIdRequest extends FolderRequest {
constructor(folder: Folder) {
super(folder);
this.id = folder.id;
this.id = folder.id ?? "";
}
}