1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Make view note header "note" lowercase.

This commit is contained in:
Alec Rippberger
2024-07-16 21:27:43 -05:00
parent 447c546660
commit 180bc299f8

View File

@@ -93,7 +93,7 @@ export class ViewV2Component {
case CipherType.Identity: case CipherType.Identity:
return this.i18nService.t("viewItemHeader", this.i18nService.t("typeIdentity")); return this.i18nService.t("viewItemHeader", this.i18nService.t("typeIdentity"));
case CipherType.SecureNote: case CipherType.SecureNote:
return this.i18nService.t("viewItemHeader", this.i18nService.t("note")); return this.i18nService.t("viewItemHeader", this.i18nService.t("note").toLowerCase());
} }
} }