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

name name and id optional in folder model

This commit is contained in:
jaasen-livefront
2025-11-07 12:26:32 -08:00
parent d9b522a341
commit 939ec1b448
2 changed files with 6 additions and 6 deletions

View File

@@ -25,6 +25,6 @@ export class FolderExport {
// Use build method instead of ctor so that we can control order of JSON stringify for pretty print
build(o: FolderView | FolderDomain) {
this.name = safeGetString(o.name) ?? "";
this.name = safeGetString(o.name ?? "") ?? "";
}
}