mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Merge branch 'develop' into hotfix/proxy-love-favorite
This commit is contained in:
commit
63cc104668
3 changed files with 7 additions and 8 deletions
|
@ -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",
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -470,7 +470,8 @@ $stage-width: 480px;
|
|||
|
||||
&.has-error {
|
||||
.validation-message {
|
||||
transform: translate(26rem, 0);
|
||||
top: 100%;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue