Merge branch 'develop' into hotfix/proxy-love-favorite

This commit is contained in:
Benjamin Wheeler 2019-01-07 14:20:28 -05:00 committed by GitHub
commit 63cc104668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 8 deletions

View file

@ -88,7 +88,7 @@
"general.copyLink": "Copy Link",
"general.report": "Report",
"general.notAvailableHeadline": "Whoops! Our server is Scratch'ing its head",
"general.notAvailableSubtitle": "We couldn't find the page you're looking for. Check to make sure you've typed the url correctly.",
"general.notAvailableSubtitle": "We couldn't find the page you're looking for. Check to make sure you've typed the URL correctly.",
"general.seeAllComments": "See all comments",
"general.all": "All",

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}
/>
@ -522,7 +520,7 @@ const PreviewPresentation = ({
<FlexRow className="comments-root-reply">
{projectInfo.comments_allowed ? (
isLoggedIn ? (
<ComposeComment
isShared && <ComposeComment
projectId={projectId}
onAddComment={onAddComment}
/>
@ -543,7 +541,7 @@ const PreviewPresentation = ({
<TopLevelComment
author={comment.author}
canDelete={canDeleteComments}
canReply={isLoggedIn && projectInfo.comments_allowed}
canReply={isLoggedIn && projectInfo.comments_allowed && isShared}
canReport={isLoggedIn}
canRestore={canRestoreComments}
content={comment.content}

View file

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