Skip to content

Commit

Permalink
Merge pull request #81 from EyeSeeTea/feat/change-hwf-notification-text
Browse files Browse the repository at this point in the history
feat: change NHWA notification text
  • Loading branch information
ifoche authored Jun 30, 2023
2 parents 7774550 + 0e87586 commit 2aa659a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "est-landing-page",
"description": "EyeSeeTea Landing Page for WHO",
"version": "0.5.7",
"version": "0.5.8",
"license": "GPL-3.0",
"author": "EyeSeeTea team",
"homepage": ".",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
import _ from "lodash";
import i18n from "../../../locales";

const NHWANotification = () => {
return (
<>
The data entry forms (datasets) and batch upload templates now reflect <u>ALL</u> the NHWA v2 modules.{" "}
<u>
<i>Please note to download the new templates for Batch upload option</i>
</u>
. All the historic data has been mapped for M01, M02; remaining modules to follow.
</>
);
};

export const nhwaAdminData = (_version: number) => [
{
key: "maturity-assessment-title",
Expand Down Expand Up @@ -41,7 +53,7 @@ export const nhwaAdminData = (_version: number) => [
{
key: "nhwa-data-entry-title",
title: i18n.t("NHWA data entry"),
notification: "The Module 1 of NHWA v2 has been integrated into the data platform",
notification: <NHWANotification />,
description: i18n.t(
"Data entry into the system can be done (i) directly through the system interface or (ii) as batch upload through excel sheets."
),
Expand Down

0 comments on commit 2aa659a

Please sign in to comment.