1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

Add support for collections with hide passwords

This commit is contained in:
hinton
2020-05-21 15:49:56 +02:00
parent 2858724f44
commit 1fa3eb49ad
8 changed files with 24 additions and 3 deletions

View File

@@ -21,6 +21,7 @@ export class CipherView implements View {
favorite = false;
organizationUseTotp = false;
edit = false;
viewPassword = true;
localData: any;
login = new LoginView();
identity = new IdentityView();
@@ -44,6 +45,7 @@ export class CipherView implements View {
this.favorite = c.favorite;
this.organizationUseTotp = c.organizationUseTotp;
this.edit = c.edit;
this.viewPassword = c.viewPassword;
this.type = c.type;
this.localData = c.localData;
this.collectionIds = c.collectionIds;