From 6e6cc7fdf978d062dedd97230252714f70faa7ac Mon Sep 17 00:00:00 2001 From: jng Date: Fri, 23 Jan 2026 13:15:00 -0500 Subject: [PATCH] apply isDeleted check to other options in desktop context menu for items --- apps/desktop/src/vault/app/vault/vault-v2.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/desktop/src/vault/app/vault/vault-v2.component.ts b/apps/desktop/src/vault/app/vault/vault-v2.component.ts index efbdee97798..cbde0ed7a23 100644 --- a/apps/desktop/src/vault/app/vault/vault-v2.component.ts +++ b/apps/desktop/src/vault/app/vault/vault-v2.component.ts @@ -651,6 +651,9 @@ export class VaultV2Component ) { menu.push({ type: "separator" }); } + if (cipher.isDeleted) { + break; + } if (cipher.login.canLaunch) { menu.push({ label: this.i18nService.t("launch"),