Skip to content

Commit c83c1cc

Browse files
committed
rename editor
1 parent 9f97e4e commit c83c1cc

File tree

1 file changed

+3
-3
lines changed
  • client/modules/IDE/components/Editor

1 file changed

+3
-3
lines changed

client/modules/IDE/components/Editor/index.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ window.HTMLHint = HTMLHint;
8080

8181
const 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

687687
export default withTranslation()(
688-
connect(mapStateToProps, mapDispatchToProps)(EditorV2)
688+
connect(mapStateToProps, mapDispatchToProps)(Editor)
689689
);

0 commit comments

Comments
 (0)