mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-25 00:28:02 -05:00
replaces isNewProject
This commit is contained in:
parent
6aca8d6e23
commit
7a52cedae1
1 changed files with 1 additions and 3 deletions
|
@ -126,7 +126,6 @@ class Preview extends React.Component {
|
||||||
showUsernameBlockAlert: false,
|
showUsernameBlockAlert: false,
|
||||||
showEmailConfirmationModal: false,
|
showEmailConfirmationModal: false,
|
||||||
projectId: parts[1] === 'editor' ? '0' : parts[1],
|
projectId: parts[1] === 'editor' ? '0' : parts[1],
|
||||||
isNewProject: parts[1] === 'editor',
|
|
||||||
reportOpen: false,
|
reportOpen: false,
|
||||||
singleCommentId: singleCommentId,
|
singleCommentId: singleCommentId,
|
||||||
greenFlagRecorded: false
|
greenFlagRecorded: false
|
||||||
|
@ -150,7 +149,6 @@ class Preview extends React.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (this.state.projectId === '0' && this.state.projectId !== prevState.projectId) {
|
if (this.state.projectId === '0' && this.state.projectId !== prevState.projectId) {
|
||||||
this.setState({isNewProject: true}); // eslint-disable-line react/no-did-update-set-state
|
|
||||||
this.props.resetProject();
|
this.props.resetProject();
|
||||||
if (this.state.justRemixed || this.state.justShared) {
|
if (this.state.justRemixed || this.state.justShared) {
|
||||||
this.setState({ // eslint-disable-line react/no-did-update-set-state
|
this.setState({ // eslint-disable-line react/no-did-update-set-state
|
||||||
|
@ -835,7 +833,7 @@ class Preview extends React.Component {
|
||||||
/>
|
/>
|
||||||
</Page> :
|
</Page> :
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
{(this.state.isNewProject || this.state.isProjectLoaded ||
|
{(!this.state.projectId || this.state.projectId === '0' || this.state.isProjectLoaded ||
|
||||||
(this.props.projectInfo && this.props.projectInfo.project_token)) &&
|
(this.props.projectInfo && this.props.projectInfo.project_token)) &&
|
||||||
(
|
(
|
||||||
<IntlGUI
|
<IntlGUI
|
||||||
|
|
Loading…
Reference in a new issue