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 36067ab commit f17d63bCopy full SHA for f17d63b
src/view.ts
@@ -196,7 +196,7 @@ export const completionPlugin = ViewPlugin.fromClass(class implements PluginValu
196
if (state && state.tooltip && this.view.state.facet(completionConfig).closeOnBlur) {
197
let dialog = state.open && getTooltip(this.view, state.open.tooltip)
198
if (!dialog || !dialog.dom.contains(event.relatedTarget as HTMLElement))
199
- this.view.dispatch({effects: closeCompletionEffect.of(null)})
+ setTimeout(() => this.view.dispatch({effects: closeCompletionEffect.of(null)}), 10)
200
}
201
},
202
compositionstart() {
0 commit comments