diff --git a/client/modules/IDE/components/Editor.jsx b/client/modules/IDE/components/Editor.jsx index d4699cf8..0d365c97 100644 --- a/client/modules/IDE/components/Editor.jsx +++ b/client/modules/IDE/components/Editor.jsx @@ -176,7 +176,6 @@ class Editor extends React.Component { } initializeDocuments(files) { - console.log('calling initialize documents'); this._docs = {}; files.forEach((file) => { if (file.name !== 'root') { diff --git a/client/modules/IDE/pages/IDEView.jsx b/client/modules/IDE/pages/IDEView.jsx index 1d503291..ca6d22d3 100644 --- a/client/modules/IDE/pages/IDEView.jsx +++ b/client/modules/IDE/pages/IDEView.jsx @@ -263,6 +263,7 @@ class IDEView extends React.Component { setLintWarning={this.props.setLintWarning} textOutput={this.props.preferences.textOutput} gridOutput={this.props.preferences.gridOutput} + soundOutput={this.props.preferences.soundOutput} setTextOutput={this.props.setTextOutput} setGridOutput={this.props.setGridOutput} setSoundOutput={this.props.setSoundOutput} @@ -564,7 +565,7 @@ IDEView.propTypes = { infiniteLoop: PropTypes.bool.isRequired, previewIsRefreshing: PropTypes.bool.isRequired, infiniteLoopMessage: PropTypes.string.isRequired, - projectSavedTime: PropTypes.string.isRequired, + projectSavedTime: PropTypes.string, previousPath: PropTypes.string.isRequired, justOpenedProject: PropTypes.bool.isRequired, errorType: PropTypes.string, diff --git a/client/modules/IDE/reducers/project.js b/client/modules/IDE/reducers/project.js index eb1de631..c3572381 100644 --- a/client/modules/IDE/reducers/project.js +++ b/client/modules/IDE/reducers/project.js @@ -8,6 +8,7 @@ const initialState = () => { return { name: generatedName, serveSecure: isSecurePage(), + updatedAt: '' }; };