Skip to content

Commit 805b042

Browse files
committedMay 9, 2024
fix the Keyword completion type
1 parent 4f8ab20 commit 805b042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/web-console/src/scenes/Editor/Monaco/questdb-sql/getLanguageCompletions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const getLanguageCompletions = (range: IRange) => [
77
...functions.map((qdbFunction) => {
88
return {
99
label: qdbFunction,
10-
kind: CompletionItemKind.Keyword,
10+
kind: CompletionItemKind.Function,
1111
insertText: qdbFunction,
1212
range,
1313
}

0 commit comments

Comments
 (0)
Failed to load comments.