diff --git a/src/angular/components/view.component.ts b/src/angular/components/view.component.ts index 9ff6b83b78..a7325893dc 100644 --- a/src/angular/components/view.component.ts +++ b/src/angular/components/view.component.ts @@ -1,7 +1,6 @@ import { EventEmitter, Input, - OnChanges, OnDestroy, Output, } from '@angular/core'; diff --git a/src/models/view/cipherView.ts b/src/models/view/cipherView.ts index 9566c7d285..2b5f1499f1 100644 --- a/src/models/view/cipherView.ts +++ b/src/models/view/cipherView.ts @@ -18,6 +18,8 @@ export class CipherView implements View { notes: string; type: CipherType; favorite: boolean; + organizationUseTotp: boolean; + edit: boolean; localData: any; login: LoginView; identity: IdentityView; @@ -36,6 +38,8 @@ export class CipherView implements View { this.organizationId = c.organizationId; this.folderId = c.folderId; this.favorite = c.favorite; + this.organizationUseTotp = c.organizationUseTotp; + this.edit = c.edit; this.type = c.type; this.localData = c.localData; this.collectionIds = c.collectionIds;