Skip to content

Commit a4fec9e

Browse files
fix folder
1 parent e09cab2 commit a4fec9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/common/src/vault/models/domain/folder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class Folder extends Domain {
3232
encryptService: EncryptService,
3333
): Promise<FolderView> {
3434
const folderView = new FolderView();
35-
folderView.id = this.id ?? "";
35+
folderView.id = this.id;
3636
folderView.revisionDate = this.revisionDate;
3737
try {
3838
folderView.name = await encryptService.decryptString(this.name, key);

0 commit comments

Comments
 (0)