Skip to content

Commit 1e2e4a4

Browse files
committed
remove extra console log
1 parent 57ec6bb commit 1e2e4a4

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ class Editor extends React.Component {
210210
this.showHint(_cm);
211211
}
212212
if (e.key === 'Escape') {
213-
console.log(this._cm);
214213
e.preventDefault();
215214
const selections = this._cm.listSelections();
215+
216216
if (selections.length > 1) {
217217
const firstPos = selections[0].head || selections[0].anchor;
218218
this._cm.setSelection(firstPos);

0 commit comments

Comments
 (0)