diff --git a/apps/web/src/app/organizations/vault/add-edit.component.ts b/apps/web/src/app/organizations/vault/add-edit.component.ts index f45ccc939f..e8138b1abc 100644 --- a/apps/web/src/app/organizations/vault/add-edit.component.ts +++ b/apps/web/src/app/organizations/vault/add-edit.component.ts @@ -96,8 +96,11 @@ export class AddEditComponent extends BaseAddEditComponent { } const response = await this.apiService.getCipherAdmin(this.cipherId); const data = new CipherData(response); - this.originalCipher = new Cipher(data); - return new Cipher(data); + + data.edit = true; + const cipher = new Cipher(data); + this.originalCipher = cipher; + return cipher; } protected encryptCipher() {