Merge pull request #2613 from chrisgarrity/issue/revert-notes-limit

restore 5000 character limit for description fields
This commit is contained in:
Paul Kaplan 2019-01-07 13:09:27 -05:00 committed by GitHub
commit 0c62f78a17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View file

@ -379,8 +379,7 @@ const PreviewPresentation = ({
})
}}
validations={{
// TODO: actual 5000
maxLength: 1000
maxLength: 5000
}}
value={projectInfo.instructions}
/>
@ -423,8 +422,7 @@ const PreviewPresentation = ({
})
}}
validations={{
// TODO: actual 5000
maxLength: 1000
maxLength: 5000
}}
value={projectInfo.description}
/>

View file

@ -470,7 +470,8 @@ $stage-width: 480px;
&.has-error {
.validation-message {
transform: translate(26rem, 0);
top: 100%;
right: 0;
}
}