Make view note header "note" lowercase.
This commit is contained in:
parent
447c546660
commit
180bc299f8
|
@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue