added description display on summary

This commit is contained in:
2022-01-27 13:17:29 +00:00
parent 5bece4c53e
commit 837455a4f5
3 changed files with 12 additions and 0 deletions
+10
View File
@@ -211,6 +211,16 @@ const CaseSummary = (props) => {
: ""}
</dd>
</div>
{casesObj.description != null && (
<div className="govuk-summary-list__row">
<dt className="govuk-summary-list__key">
{t("case:summary-description-label")}
</dt>
<dd className="govuk-summary-list__value">
{casesObj.description || "not entered"}
</dd>
</div>
)}
</dl>
</div>
</div>
+1
View File
@@ -5,6 +5,7 @@
"summary-applicant-label": "Apelydd/Ymgeisydd",
"summary-agent-label": "Asiant",
"summary-site-address-label": "Cyfeiriad y Safle",
"summary-description-label": "Disgrifiad",
"summary-make-representation-label": "Cyflwyno cynrychiolaeth",
"summary-back-button-label": "Ewch yn ôl",
"summary-case-details-label": "Manylion yr Achos",
+1
View File
@@ -5,6 +5,7 @@
"summary-applicant-label": "Appellant/Applicant",
"summary-agent-label": "Agent",
"summary-site-address-label": "Site Address",
"summary-description-label": "Description",
"summary-make-representation-label": "Make representation",
"summary-back-button-label": "Go back",
"summary-case-details-label": "Case Details",