1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 14:04:03 +00:00

don't allow unarchiving in AC (#18637)

This commit is contained in:
Jordan Aasen
2026-02-02 13:21:18 -08:00
committed by GitHub
parent 8ceb28f2b9
commit a048827c0e

View File

@@ -157,7 +157,7 @@ export class VaultCipherRowComponent<C extends CipherViewLike> implements OnInit
// If item is archived always show unarchive button, even if user is not premium
protected get showUnArchiveButton() {
if (!this.archiveEnabled()) {
if (!this.archiveEnabled() || this.viewingOrgVault) {
return false;
}