mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-07 09:03:27 -05:00
fix(curriculum): intellisense suggenstion box should not be visible (#41918)
This commit is contained in:
@@ -293,6 +293,11 @@ class Editor extends Component {
|
||||
});
|
||||
}
|
||||
});
|
||||
// Overrides Intellisense suggestion box
|
||||
editor.addCommand(
|
||||
monaco.KeyMod.CtrlCmd | monaco.KeyCode.Space,
|
||||
function () {}
|
||||
);
|
||||
editor.onDidFocusEditorWidget(() => this.props.setEditorFocusability(true));
|
||||
// This is to persist changes caused by the accessibility tooltip.
|
||||
editor.onDidChangeConfiguration(event => {
|
||||
|
||||
Reference in New Issue
Block a user