diff --git a/components/elements/index.js b/components/elements/index.js index 2220b699..2e77c966 100644 --- a/components/elements/index.js +++ b/components/elements/index.js @@ -75,8 +75,9 @@ const RenderTextfield = ({ name={name} id={id} maxLength={ - custom.hasOwnProperty("maxFieldLength") && - custom.maxFieldLength + custom.hasOwnProperty("maxFieldLength") + ? custom.maxFieldLength + : undefined } /> @@ -211,7 +212,7 @@ const RenderMultiline = ({ maxLength={ custom.hasOwnProperty("maxFieldLength") ? custom.maxFieldLength - : "" + : undefined } > diff --git a/components/myportal/awaitingsubmissionfromblob.js b/components/myportal/awaitingsubmissionfromblob.js index 1a6b7de0..1f0e52d7 100644 --- a/components/myportal/awaitingsubmissionfromblob.js +++ b/components/myportal/awaitingsubmissionfromblob.js @@ -97,6 +97,10 @@ const AwaitingSubmissionFromBlob = (props) => { {showTopThreeArr[index].pinswg_name} +
+ LPA reference:{" "} + {showTopThreeArr[key].pinswg_lpaapplicationreference} +
{t("myportal:appeal-type-label")}:{" "} { diff --git a/components/myportal/topthree.js b/components/myportal/topthree.js index e9bf9831..70e6d9c5 100644 --- a/components/myportal/topthree.js +++ b/components/myportal/topthree.js @@ -210,6 +210,7 @@ const TopThree = (props) => { ]}{" "}
+ {/* {(topThreeType == "awaitingSubmission" || topThreeType == "watchedCases") && ( */}
diff --git a/components/newappeal/aboutyou.js b/components/newappeal/aboutyou.js index a0265407..09bb488e 100644 --- a/components/newappeal/aboutyou.js +++ b/components/newappeal/aboutyou.js @@ -50,8 +50,9 @@ const RenderTextfield = ({ type={type} disabled={disabled ? true : false} maxLength={ - custom.hasOwnProperty("maxFieldLength") && - custom.maxFieldLength + custom.hasOwnProperty("maxFieldLength") + ? custom.maxFieldLength + : undefined } />