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
No known key found for this signature in database
GPG Key ID: 9DD8DA583B28154A
1 changed files with 1 additions and 1 deletions

View File

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