Skip to content

Commit

Permalink
Merge pull request #135 from cfpb/meissadia/failed-upload-message
Browse files Browse the repository at this point in the history
Update failed file upload message
  • Loading branch information
wpears authored Jan 7, 2020
2 parents 440f21e + fbf7d50 commit 68070e5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/common/Alert.css
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,9 @@
.alert-paragraph {
width: 66ch;
}

@media (min-width: 801px){
.alert-text > .failed {
width: 80%;
}
}
5 changes: 3 additions & 2 deletions src/filing/refileWarning/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ export const getText = props => {
if (props.code === FAILED) {
reviewAndDownload = null
text = (
<div>
<div className='failed'>
Please select the &quot;Upload a new file&quot; button to restart the
process.
process. Ensure that your text file has no spaces between characters in
LEI/ULI fields and is pipe delimited, not tab or comma delimited.
</div>
)
} else if (props.code === SYNTACTICAL_VALIDITY_EDITS) {
Expand Down

0 comments on commit 68070e5

Please sign in to comment.