1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 03:33:30 +00:00

apply isDeleted check to other options in desktop context menu for items

This commit is contained in:
jng
2026-01-23 13:15:00 -05:00
parent 47b574dbc3
commit 6e6cc7fdf9

View File

@@ -651,6 +651,9 @@ export class VaultV2Component<C extends CipherViewLike>
) {
menu.push({ type: "separator" });
}
if (cipher.isDeleted) {
break;
}
if (cipher.login.canLaunch) {
menu.push({
label: this.i18nService.t("launch"),