1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-06 02:23:14 +00:00

Proposed refactor of folder domain model

This commit is contained in:
Hinton
2022-04-19 11:31:49 +02:00
parent fee2f78aa8
commit f75e2c4175
14 changed files with 218 additions and 137 deletions

View File

@@ -88,7 +88,7 @@ export class FolderAddEditComponent implements OnInit {
this.editMode = true;
this.title = this.i18nService.t("editFolder");
const folder = await this.folderService.get(this.folderId);
this.folder = await folder.decrypt();
this.folder = await this.folderService.decrypt(folder);
} else {
this.title = this.i18nService.t("addFolder");
}