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