From e8976556d8e70bdfbdaf70af3d41f1ddf7fd5f0c Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Mon, 9 Dec 2024 06:40:58 -0800 Subject: [PATCH] Fix missing title for ssh key dialog (#12317) --- .../vault-item-dialog/vault-item-dialog.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/app/vault/components/vault-item-dialog/vault-item-dialog.component.ts b/apps/web/src/app/vault/components/vault-item-dialog/vault-item-dialog.component.ts index 2f5b014fcb..ecceaa6267 100644 --- a/apps/web/src/app/vault/components/vault-item-dialog/vault-item-dialog.component.ts +++ b/apps/web/src/app/vault/components/vault-item-dialog/vault-item-dialog.component.ts @@ -428,6 +428,9 @@ export class VaultItemDialogComponent implements OnInit, OnDestroy { case CipherType.SecureNote: this.title = this.i18nService.t(partOne, this.i18nService.t("note").toLowerCase()); break; + case CipherType.SshKey: + this.title = this.i18nService.t(partOne, this.i18nService.t("typeSshKey").toLowerCase()); + break; } }