From 925f70276092b721ea28814edc918f11ca338596 Mon Sep 17 00:00:00 2001 From: davidbgomes Date: Wed, 15 May 2024 11:33:32 -0500 Subject: [PATCH] add facility code column --- .../components/survey-list/table/SurveyListTable.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/webapp/components/survey-list/table/SurveyListTable.tsx b/src/webapp/components/survey-list/table/SurveyListTable.tsx index 7a6b5df..a9574b9 100644 --- a/src/webapp/components/survey-list/table/SurveyListTable.tsx +++ b/src/webapp/components/survey-list/table/SurveyListTable.tsx @@ -114,6 +114,14 @@ export const SurveyListTable: React.FC = ({ )} + {surveyFormType === "PrevalenceFacilityLevelForm" && ( + + + {i18n.t("Facility Code")} + + + )} + {(surveyFormType === "PPSSurveyForm" || surveyFormType === "PrevalenceSurveyForm") && ( <> @@ -268,6 +276,9 @@ export const SurveyListTable: React.FC = ({ surveyFormType === "PPSCountryQuestionnaire") && ( {survey.assignedOrgUnit.name} )} + {surveyFormType === "PrevalenceFacilityLevelForm" && ( + {survey.id} + )} {(surveyFormType === "PPSSurveyForm" || surveyFormType === "PrevalenceSurveyForm") && (