update submissions card with lpa ref
This commit is contained in:
@@ -75,8 +75,9 @@ const RenderTextfield = ({
|
||||
name={name}
|
||||
id={id}
|
||||
maxLength={
|
||||
custom.hasOwnProperty("maxFieldLength") &&
|
||||
custom.maxFieldLength
|
||||
custom.hasOwnProperty("maxFieldLength")
|
||||
? custom.maxFieldLength
|
||||
: undefined
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
@@ -211,7 +212,7 @@ const RenderMultiline = ({
|
||||
maxLength={
|
||||
custom.hasOwnProperty("maxFieldLength")
|
||||
? custom.maxFieldLength
|
||||
: ""
|
||||
: undefined
|
||||
}
|
||||
></textarea>
|
||||
</div>
|
||||
|
||||
@@ -97,6 +97,10 @@ const AwaitingSubmissionFromBlob = (props) => {
|
||||
{showTopThreeArr[index].pinswg_name}
|
||||
</Link>
|
||||
</div>
|
||||
<div>
|
||||
<b>LPA reference:</b>{" "}
|
||||
{showTopThreeArr[key].pinswg_lpaapplicationreference}
|
||||
</div>
|
||||
<div>
|
||||
<b>{t("myportal:appeal-type-label")}:</b>{" "}
|
||||
{
|
||||
|
||||
@@ -210,6 +210,7 @@ const TopThree = (props) => {
|
||||
]}{" "}
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
{/* {(topThreeType == "awaitingSubmission" ||
|
||||
topThreeType == "watchedCases") && ( */}
|
||||
<div>
|
||||
|
||||
@@ -50,8 +50,9 @@ const RenderTextfield = ({
|
||||
type={type}
|
||||
disabled={disabled ? true : false}
|
||||
maxLength={
|
||||
custom.hasOwnProperty("maxFieldLength") &&
|
||||
custom.maxFieldLength
|
||||
custom.hasOwnProperty("maxFieldLength")
|
||||
? custom.maxFieldLength
|
||||
: undefined
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user