Merge pull request #2366 from paulkaplan/fix-cloud-switching

Pass canSave to both editor and player view to allow cloud reconnecting.
This commit is contained in:
Paul Kaplan 2018-11-29 11:26:52 -05:00 committed by GitHub
commit 443039389a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -51,6 +51,7 @@ const PreviewPresentation = ({
canRemix,
canReport,
canRestoreComments,
canSave,
canShare,
canUseBackpack,
cloudHost,
@ -209,6 +210,7 @@ const PreviewPresentation = ({
backpackVisible={canUseBackpack}
basePath="/"
canRemix={canRemix}
canSave={canSave}
className="guiPlayer"
cloudHost={cloudHost}
isFullScreen={isFullScreen}
@ -498,6 +500,7 @@ PreviewPresentation.propTypes = {
canRemix: PropTypes.bool,
canReport: PropTypes.bool,
canRestoreComments: PropTypes.bool,
canSave: PropTypes.bool,
canShare: PropTypes.bool,
canUseBackpack: PropTypes.bool,
cloudHost: PropTypes.string,

View file

@ -441,6 +441,7 @@ class Preview extends React.Component {
canRemix={this.props.canRemix}
canReport={this.props.canReport}
canRestoreComments={this.props.isAdmin}
canSave={this.props.canSave}
canShare={this.props.canShare}
canUseBackpack={this.props.canUseBackpack}
cloudHost={this.props.cloudHost}