File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
client/modules/IDE/components/Editor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ window.HTMLHint = HTMLHint;
80
80
81
81
const INDENTATION_AMOUNT = 2 ;
82
82
83
- class EditorV2 extends React . Component {
83
+ class Editor extends React . Component {
84
84
constructor ( props ) {
85
85
super ( props ) ;
86
86
this . tidyCode = this . tidyCode . bind ( this ) ;
@@ -592,7 +592,7 @@ class EditorV2 extends React.Component {
592
592
}
593
593
}
594
594
595
- EditorV2 . propTypes = {
595
+ Editor . propTypes = {
596
596
autocloseBracketsQuotes : PropTypes . bool . isRequired ,
597
597
autocompleteHinter : PropTypes . bool . isRequired ,
598
598
lineNumbers : PropTypes . bool . isRequired ,
@@ -685,5 +685,5 @@ function mapDispatchToProps(dispatch) {
685
685
}
686
686
687
687
export default withTranslation ( ) (
688
- connect ( mapStateToProps , mapDispatchToProps ) ( EditorV2 )
688
+ connect ( mapStateToProps , mapDispatchToProps ) ( Editor )
689
689
) ;
You can’t perform that action at this time.
0 commit comments