Skip to content

Commit

Permalink
Don't activate autocomplete on typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelemeny committed Feb 26, 2024
1 parent e4869da commit 1b116a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/LuceneQueryEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ export function LuceneQueryEditor(props: LuceneQueryEditorProps){


const autocomplete = autocompletion({
override: [datasourceCompletions]
override: [datasourceCompletions],
activateOnTyping: false,
})

return (<CodeMirror
Expand Down

0 comments on commit 1b116a0

Please sign in to comment.