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:
@@ -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 ?? "") ?? "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user