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;
8080
8181const INDENTATION_AMOUNT = 2 ;
8282
83- class EditorV2 extends React . Component {
83+ class Editor extends React . Component {
8484 constructor ( props ) {
8585 super ( props ) ;
8686 this . tidyCode = this . tidyCode . bind ( this ) ;
@@ -592,7 +592,7 @@ class EditorV2 extends React.Component {
592592 }
593593}
594594
595- EditorV2 . propTypes = {
595+ Editor . propTypes = {
596596 autocloseBracketsQuotes : PropTypes . bool . isRequired ,
597597 autocompleteHinter : PropTypes . bool . isRequired ,
598598 lineNumbers : PropTypes . bool . isRequired ,
@@ -685,5 +685,5 @@ function mapDispatchToProps(dispatch) {
685685}
686686
687687export default withTranslation ( ) (
688- connect ( mapStateToProps , mapDispatchToProps ) ( EditorV2 )
688+ connect ( mapStateToProps , mapDispatchToProps ) ( Editor )
689689) ;
You can’t perform that action at this time.
0 commit comments