1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-09 00:50:19 +01:00

Fix missing title for ssh key dialog (#12317)

This commit is contained in:
Bernd Schoolmann 2024-12-09 06:40:58 -08:00 committed by GitHub
parent ba4d7ea799
commit e8976556d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}
}