1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-31 00:33:33 +00:00

[PM-30526] remove archive option from item more options in AC (#18255)

This commit is contained in:
Jason Ng
2026-01-08 09:59:27 -05:00
committed by GitHub
parent 5578c94c65
commit 95235a2b7b

View File

@@ -144,8 +144,9 @@ export class VaultCipherRowComponent<C extends CipherViewLike> implements OnInit
}
}
// Archive button will not show in Admin Console
protected get showArchiveButton() {
if (!this.archiveEnabled()) {
if (!this.archiveEnabled() || this.viewingOrgVault) {
return false;
}