From 1cb5d5ce7aff87d440e7fdef272964c492c5b227 Mon Sep 17 00:00:00 2001 From: Jordan Aasen <166539328+jaasen-livefront@users.noreply.github.com> Date: Mon, 5 Jan 2026 15:18:00 -0800 Subject: [PATCH] [PM-30249] - allow org ciphers to be archived (#18214) * allow org ciphers to be archived * fix title in item footer unarchive --- apps/desktop/src/vault/app/vault/item-footer.component.html | 2 +- apps/desktop/src/vault/app/vault/item-footer.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/vault/app/vault/item-footer.component.html b/apps/desktop/src/vault/app/vault/item-footer.component.html index 859b2f1bdc5..9d5b1e5e560 100644 --- a/apps/desktop/src/vault/app/vault/item-footer.component.html +++ b/apps/desktop/src/vault/app/vault/item-footer.component.html @@ -59,7 +59,7 @@ type="button" *ngIf="showUnarchiveButton" (click)="unarchive()" - appA11yTitle="{{ 'unarchive' | i18n }}" + appA11yTitle="{{ 'unArchive' | i18n }}" > diff --git a/apps/desktop/src/vault/app/vault/item-footer.component.ts b/apps/desktop/src/vault/app/vault/item-footer.component.ts index 0ac12c928f2..8873b74932c 100644 --- a/apps/desktop/src/vault/app/vault/item-footer.component.ts +++ b/apps/desktop/src/vault/app/vault/item-footer.component.ts @@ -218,7 +218,7 @@ export class ItemFooterComponent implements OnInit, OnChanges { } private async checkArchiveState() { - const cipherCanBeArchived = !this.cipher.isDeleted && this.cipher.organizationId == null; + const cipherCanBeArchived = !this.cipher.isDeleted; const [userCanArchive, hasArchiveFlagEnabled] = await firstValueFrom( this.accountService.activeAccount$.pipe( getUserId,