* fix step history not refreshing with staticInputs * fix array of obj not showing up in json editor in test this step * datatable scales correctly in DisplayResult and scrolling is much more usable * avoid next button disapearing and changing layout / hurting ux * nits * fix bug when renaming module A to B then module C to A, C takes the schema of A * fix bug with comments in sql repl * fix aggrid theme randomly not loading * bindable script * better delete button in db manager * property select doesnt exist * fix all warnings * delete $flowStateStore[id] on delete
14 lines
439 B
Svelte
14 lines
439 B
Svelte
<script lang="ts">
|
|
import ScriptBuilder from '$lib/components/ScriptBuilder.svelte'
|
|
import AiChatLayout from './copilot/chat/AiChatLayout.svelte'
|
|
import type { ScriptBuilderProps } from './script_builder'
|
|
|
|
let { script: oldScript, disableAi, ...props }: ScriptBuilderProps = $props()
|
|
|
|
let script = $state(oldScript)
|
|
</script>
|
|
|
|
<AiChatLayout noPadding {disableAi}>
|
|
<ScriptBuilder bind:script {disableAi} {...props} />
|
|
</AiChatLayout>
|