Skip to content

Commit

Permalink
MOSIP-38154: Pop-Up Message to be unique in all languages (#1047)
Browse files Browse the repository at this point in the history
Signed-off-by: Anil_Kumar_Majji <106086523+Anil-kumar-Majji@users.noreply.github.com>
  • Loading branch information
Anil-kumar-Majji authored Dec 20, 2024
1 parent 22fda28 commit 00915fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function DeactivatePolicyPopup({ header, description, popupData, headerKeyName,
{`'${t(header)} - ${headerKeyName} ?'`}
</p>
: <p className="text-base leading-snug font-semibold text-black break-words px-[1%]">
{t(header)} '{ ' - ' + headerKeyName}'
{t(header)} { ' - ' + headerKeyName}
</p>
}
<p className="text-sm text-[#666666] break-words py-[5%]">
Expand Down
2 changes: 1 addition & 1 deletion pmp-revamp-ui/src/pages/common/DeactivatePopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function DeactivatePopup({ onClickConfirm, closePopUp, popupData, request, heade
{t(headerMsg)} {(popupData.isDeactivateDevice || popupData.isDeactivateFtm) ? ' - ' + `'${popupData.make}` + ' - ' + `${popupData.model}'` : (popupData.isDeactivatePartner) ? '' : ' - ' + headerKeyName}?
</p>
: <p className="text-base leading-snug font-semibold text-black break-normal px-[6%]">
{t(headerMsg)} '{(popupData.isDeactivateDevice || popupData.isDeactivateFtm) ? ' - ' + popupData.make + ' - ' + popupData.model : (popupData.isDeactivatePartner) ? '' : ' - ' + headerKeyName}'
{t(headerMsg)} {(popupData.isDeactivateDevice || popupData.isDeactivateFtm) ? ' - ' + popupData.make + ' - ' + popupData.model : (popupData.isDeactivatePartner) ? '' : ' - ' + headerKeyName}
</p>
}
<p className="text-sm text-[#666666] break-normal py-[5%]">
Expand Down

0 comments on commit 00915fb

Please sign in to comment.