fix(curriculum): intellisense suggenstion box should not be visible (#41918)

This commit is contained in:
Sem Bauke
2021-04-27 18:27:53 +02:00
committed by GitHub
parent 9bc80ce293
commit 4d83779b2e

View File

@ -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 => {