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} +