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

Fix title missing in ssh-key edit/view in web

This commit is contained in:
Bernd Schoolmann 2024-11-21 11:20:20 +01:00
parent 5e6c5c8779
commit cc7d197d4b
No known key found for this signature in database

View File

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