1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-22 21:21:35 +01:00

Fix title missing in ssh-key edit/view in web (#12081)

This commit is contained in:
Bernd Schoolmann 2024-11-21 13:10:20 -08:00 committed by GitHub
parent a9f570be06
commit 3732f1293e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -184,6 +184,8 @@ export class ViewComponent implements OnInit {
return this.i18nService.t("viewItemType", this.i18nService.t("typeCard").toLowerCase());
case CipherType.Identity:
return this.i18nService.t("viewItemType", this.i18nService.t("typeIdentity").toLowerCase());
case CipherType.SshKey:
return this.i18nService.t("viewItemType", this.i18nService.t("typeSshKey").toLowerCase());
default:
return null;
}