Merged PR 1075: update submissions card with lpa ref
update submissions card with lpa ref Related work items: #9490
This commit is contained in:
@@ -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>{" "}
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -210,6 +210,7 @@ const TopThree = (props) => {
|
|||||||
]}{" "}
|
]}{" "}
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* {(topThreeType == "awaitingSubmission" ||
|
{/* {(topThreeType == "awaitingSubmission" ||
|
||||||
topThreeType == "watchedCases") && ( */}
|
topThreeType == "watchedCases") && ( */}
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user