1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02:00

lowercase header for add/edit v2 (#10770)

This commit is contained in:
Nick Krantz 2024-09-03 10:24:14 -05:00 committed by GitHub
parent 5f5e4498e8
commit 87a1742a43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -312,13 +312,13 @@ export class AddEditV2Component implements OnInit {
switch (type) {
case CipherType.Login:
return this.i18nService.t(partOne, this.i18nService.t("typeLogin"));
return this.i18nService.t(partOne, this.i18nService.t("typeLogin").toLocaleLowerCase());
case CipherType.Card:
return this.i18nService.t(partOne, this.i18nService.t("typeCard"));
return this.i18nService.t(partOne, this.i18nService.t("typeCard").toLocaleLowerCase());
case CipherType.Identity:
return this.i18nService.t(partOne, this.i18nService.t("typeIdentity"));
return this.i18nService.t(partOne, this.i18nService.t("typeIdentity").toLocaleLowerCase());
case CipherType.SecureNote:
return this.i18nService.t(partOne, this.i18nService.t("note"));
return this.i18nService.t(partOne, this.i18nService.t("note").toLocaleLowerCase());
}
}
}