update submissions card with lpa ref

This commit is contained in:
2024-02-06 09:50:55 +00:00
parent 7059e37fb5
commit 60ac61b23e
4 changed files with 12 additions and 5 deletions
+4 -3
View File
@@ -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>