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));
|
editor.onDidFocusEditorWidget(() => this.props.setEditorFocusability(true));
|
||||||
// This is to persist changes caused by the accessibility tooltip.
|
// This is to persist changes caused by the accessibility tooltip.
|
||||||
editor.onDidChangeConfiguration(event => {
|
editor.onDidChangeConfiguration(event => {
|
||||||
|
Reference in New Issue
Block a user