Skip to content

Commit

Permalink
83950b update err msg on multi file upload (#30382)
Browse files Browse the repository at this point in the history
* hide file upload accordion chapter

* updated wording on upload err
  • Loading branch information
michaelclement authored Jun 17, 2024
1 parent f97cf82 commit 17782f3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ export function applicantInsuranceCardSchema(isPrimary) {
label: 'Upload health insurance card',
}),
'ui:errorMessages': {
minItems: 'You must add at least two items (front and back).',
minItems:
'You must add both the front and back of your card as separate files.',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ export const applicantMedicareABUploadSchema = {
label: 'Upload Medicare card',
}),
'ui:errorMessages': {
minItems: 'You must add at least two items (front and back).',
minItems:
'You must add both the front and back of your card as separate files.',
},
},
},
Expand Down Expand Up @@ -361,7 +362,8 @@ export const applicantMedicareDUploadSchema = {
label: 'Upload Medicare Part D card',
}),
'ui:errorMessages': {
minItems: 'You must add at least two items (front and back).',
minItems:
'You must add both the front and back of your card as separate files.',
},
},
},
Expand Down
9 changes: 7 additions & 2 deletions src/applications/ivc-champva/10-7959C/sass/10-7959C.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,10 @@
@import "../../../../platform/forms/sass/m-form-confirmation";

.upload-button-label {
margin-top: 8px;
}
margin-top: 8px;
}

va-accordion-item[data-chapter="fileUpload"] {
display: none;
visibility: hidden;
}

0 comments on commit 17782f3

Please sign in to comment.