mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
fix: set session code completion to enabled by default (#2664)
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
function loadCodeCompletionSessinoEnabled() {
|
||||
const stored = localStorage.getItem('codeCompletionSessionEnabled')
|
||||
if (stored) {
|
||||
$codeCompletionSessionEnabled = JSON.parse(stored) ?? true
|
||||
$codeCompletionSessionEnabled = JSON.parse(stored)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ export const copilotInfo = writable<{
|
||||
code_completion_enabled: false
|
||||
})
|
||||
export const codeCompletionLoading = writable<boolean>(false)
|
||||
export const codeCompletionSessionEnabled = writable<boolean>(false)
|
||||
export const codeCompletionSessionEnabled = writable<boolean>(true)
|
||||
|
||||
type SQLBaseSchema = {
|
||||
[schemaKey: string]: {
|
||||
|
||||
Reference in New Issue
Block a user