uat defect 128 file uploads size update and copy change

This commit is contained in:
2025-01-07 09:21:43 +00:00
parent 8f6f6f4084
commit b1edb208c6
2 changed files with 4 additions and 4 deletions
@@ -1042,7 +1042,7 @@ export const RenderFileUpload = (field) => {
return ( return (
<> <>
<Dropzone <Dropzone
maxSize={10 * 1024 * 1024} maxSize={50 * 1024 * 1024}
accept={{ accept={{
"application/pdf": [".pdf"], "application/pdf": [".pdf"],
"application/msword": [".doc"], "application/msword": [".doc"],
@@ -1162,7 +1162,7 @@ export const RenderFileUpload = (field) => {
{t( {t(
"myrepresentations:fileupload-drop-label" "myrepresentations:fileupload-drop-label"
)} )}
(Max 500MB) (Max 50 MB)
</div> </div>
<em> <em>
( (
+2 -2
View File
@@ -2001,7 +2001,7 @@ const RenderFileUpload = (field) => {
<> <>
<Dropzone <Dropzone
key={field.input.name + "_key"} key={field.input.name + "_key"}
maxSize={500 * 1024 * 1024} maxSize={50 * 1024 * 1024}
accept={{ accept={{
"application/pdf": [".pdf"], "application/pdf": [".pdf"],
"application/msword": [".doc"], "application/msword": [".doc"],
@@ -2106,7 +2106,7 @@ const RenderFileUpload = (field) => {
{t( {t(
"newappeal:new-appeal-fileupload-drop-label" "newappeal:new-appeal-fileupload-drop-label"
)}{" "} )}{" "}
(Max 500MB) (Max 50 MB)
</div> </div>
<em className="govuk-!-font-size-14"> <em className="govuk-!-font-size-14">
( (