Skip to content

Commit

Permalink
SM-2135
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelmd-eGov committed Apr 14, 2023
1 parent d7bad88 commit e6c4825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/Customisations/fsm/getPDFData.js
Expand Up @@ -136,7 +136,7 @@ const getPDFData = (application, tenantInfo, t) => {
},
{
title: t("CS_APPLICATION_DETAILS_MOHALLA"),
value: application?.address?.locality?.code
value: application?.address?.additionalDetails?.boundaryType === "Locality" && application?.address?.locality?.code
? t(
`${application?.tenantId
?.toUpperCase()
Expand All @@ -147,7 +147,7 @@ const getPDFData = (application, tenantInfo, t) => {
},
{
title: t("CS_GRAM_PANCHAYAT"),
value: application?.address?.additionalDetails?.gramPanchayat?.code
value: application?.address?.additionalDetails?.boundaryType === "Village" && application?.address?.additionalDetails?.gramPanchayat?.code
? t(
`${application?.tenantId
?.toUpperCase()
Expand Down

0 comments on commit e6c4825

Please sign in to comment.