uat defect 37
This commit is contained in:
@@ -219,7 +219,7 @@ const TopThree = (props) => {
|
||||
showTopThreeArr[key].appealType,
|
||||
"repDetails": showTopThreeArr[key],
|
||||
});
|
||||
isLPA && setRepresentationCapacity("lpa");
|
||||
isLPA && setRepresentationCapacity("LPA");
|
||||
}}
|
||||
>
|
||||
{showTopThreeArr[key].pinswg_name}
|
||||
|
||||
@@ -113,7 +113,11 @@ export const other_pdf = ({ docProps }) => {
|
||||
|
||||
let datestr = values.pinswg_name.split("-");
|
||||
let signedDate = formatDates(new Date()); // datestr[2] + "/" + datestr[1] + "/" + datestr[0];
|
||||
const isLPA = values.representationCapacity == "lpa" ? true : false;
|
||||
const isLPA =
|
||||
values.representationCapacity == "lpa" ||
|
||||
values.representationCapacity == "LPA"
|
||||
? true
|
||||
: false;
|
||||
let filterFilesList = values.hasOwnProperty("filesList")
|
||||
? values.filesList.filter(function (el) {
|
||||
return el != null;
|
||||
|
||||
Reference in New Issue
Block a user