We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3efe3d2 commit 688fc34Copy full SHA for 688fc34
client/modules/IDE/pages/IDEView.jsx
@@ -124,6 +124,7 @@ class IDEView extends React.Component {
124
}
125
126
componentWillUnmount() {
127
+ document.removeEventListener('keydown', this.handleGlobalKeydown, false);
128
clearTimeout(this.autosaveInterval);
129
this.autosaveInterval = null;
130
this.consoleSize = undefined;
@@ -490,6 +491,7 @@ class IDEView extends React.Component {
490
491
<Overlay
492
title="Error"
493
ariaLabel="error"
494
+ closeOverlay={this.props.hideErrorModal}
495
>
496
<ErrorModal
497
type={this.props.ide.errorType}
0 commit comments