Merged PR 1075: update submissions card with lpa ref

update submissions card with lpa ref

Related work items: #9490
This commit is contained in:
Robert Bond
2024-02-06 09:52:04 +00:00
4 changed files with 12 additions and 5 deletions
+4 -3
View File
@@ -75,8 +75,9 @@ const RenderTextfield = ({
name={name} name={name}
id={id} id={id}
maxLength={ maxLength={
custom.hasOwnProperty("maxFieldLength") && custom.hasOwnProperty("maxFieldLength")
custom.maxFieldLength ? custom.maxFieldLength
: undefined
} }
/> />
</div> </div>
@@ -211,7 +212,7 @@ const RenderMultiline = ({
maxLength={ maxLength={
custom.hasOwnProperty("maxFieldLength") custom.hasOwnProperty("maxFieldLength")
? custom.maxFieldLength ? custom.maxFieldLength
: "" : undefined
} }
></textarea> ></textarea>
</div> </div>
@@ -97,6 +97,10 @@ const AwaitingSubmissionFromBlob = (props) => {
{showTopThreeArr[index].pinswg_name} {showTopThreeArr[index].pinswg_name}
</Link> </Link>
</div> </div>
<div>
<b>LPA reference:</b>{" "}
{showTopThreeArr[key].pinswg_lpaapplicationreference}
</div>
<div> <div>
<b>{t("myportal:appeal-type-label")}:</b>{" "} <b>{t("myportal:appeal-type-label")}:</b>{" "}
{ {
+1
View File
@@ -210,6 +210,7 @@ const TopThree = (props) => {
]}{" "} ]}{" "}
</Link> </Link>
</div> </div>
{/* {(topThreeType == "awaitingSubmission" || {/* {(topThreeType == "awaitingSubmission" ||
topThreeType == "watchedCases") && ( */} topThreeType == "watchedCases") && ( */}
<div> <div>
+3 -2
View File
@@ -50,8 +50,9 @@ const RenderTextfield = ({
type={type} type={type}
disabled={disabled ? true : false} disabled={disabled ? true : false}
maxLength={ maxLength={
custom.hasOwnProperty("maxFieldLength") && custom.hasOwnProperty("maxFieldLength")
custom.maxFieldLength ? custom.maxFieldLength
: undefined
} }
/> />
</div> </div>