Skip to content

Commit 1b116a0

Browse files
committed
Don't activate autocomplete on typing
1 parent e4869da commit 1b116a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/LuceneQueryEditor.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ export function LuceneQueryEditor(props: LuceneQueryEditorProps){
5151

5252

5353
const autocomplete = autocompletion({
54-
override: [datasourceCompletions]
54+
override: [datasourceCompletions],
55+
activateOnTyping: false,
5556
})
5657

5758
return (<CodeMirror

0 commit comments

Comments
 (0)