fix merge conflict
This commit is contained in:
parent
f0eb03bf05
commit
8e6272d75f
|
@ -18,14 +18,14 @@ class TextEditorContainer extends React.Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<TextEditor file={props.currentFile}
|
<TextEditor file={this.props.currentFile}
|
||||||
currentFile={this.props.currentFile}
|
currentFile={this.props.currentFile}
|
||||||
breakpoints={this.props.breakpoints}
|
breakpoints={this.props.breakpoints}
|
||||||
toggleBreakpoint={this.props.toggleBreakpoint}
|
toggleBreakpoint={this.props.toggleBreakpoint}
|
||||||
editorTabs={this.props.editorTabs}
|
editorTabs={this.props.editorTabs}
|
||||||
removeEditorTabs={this.props.removeEditorTabs}
|
removeEditorTabs={this.props.removeEditorTabs}
|
||||||
addEditorTabs={this.props.addEditorTabs}
|
addEditorTabs={this.props.addEditorTabs}
|
||||||
debuggerLine={props.debuggerLine}
|
debuggerLine={this.props.debuggerLine}
|
||||||
onFileContentChange={this.props.onFileContentChange} />
|
onFileContentChange={this.props.onFileContentChange} />
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -350,6 +350,7 @@ function debuggerInfo(state={}, action) {
|
||||||
if (action.type === DEBUGGER_INFO[SUCCESS]) {
|
if (action.type === DEBUGGER_INFO[SUCCESS]) {
|
||||||
return action.data;
|
return action.data;
|
||||||
}
|
}
|
||||||
|
return state;
|
||||||
}
|
}
|
||||||
|
|
||||||
function editorTabs(state = [], action) {
|
function editorTabs(state = [], action) {
|
||||||
|
|
Loading…
Reference in New Issue