diff --git a/src/Explorer/Controls/Editor/EditorReact.tsx b/src/Explorer/Controls/Editor/EditorReact.tsx index 53ba3e106..4b805dfc5 100644 --- a/src/Explorer/Controls/Editor/EditorReact.tsx +++ b/src/Explorer/Controls/Editor/EditorReact.tsx @@ -31,6 +31,13 @@ export class EditorReact extends React.Component { + const suggestionWidget = this.editor?.getDomNode()?.querySelector(".suggest-widget") as HTMLElement; + if (suggestionWidget) { + suggestionWidget.style.display = "none"; + } + }, 100); } public componentDidUpdate(previous: EditorReactProps) {