Skip to content

Commit

Permalink
change apply args and schema logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilhem-lm committed Jan 8, 2025
1 parent b094e70 commit ec9dd91
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion frontend/src/lib/components/Dev.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,11 @@
customUi: {},
insertButtonOpen: writable(false),
executionCount: writable(0),
flowInputEditorState: writable<FlowInputEditorState | undefined>(undefined)
flowInputEditorState: writable<FlowInputEditorState>({
selectedTab: undefined,
editPanelSize: undefined,
payloadData: undefined
})
})
setContext<PropPickerContext>('PropPickerContext', {
flowPropPickerConfig: writable<FlowPropPickerConfig | undefined>(undefined),
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/routes/flows/dev/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@
customUi: {},
insertButtonOpen: writable(false),
executionCount: writable(0),
flowInputEditorState: writable<FlowInputEditorState | undefined>(undefined)
flowInputEditorState: writable<FlowInputEditorState>({
selectedTab: undefined,
editPanelSize: undefined,
payloadData: undefined
})
})
setContext<PropPickerContext>('PropPickerContext', {
flowPropPickerConfig: writable<FlowPropPickerConfig | undefined>(undefined),
Expand Down

0 comments on commit ec9dd91

Please sign in to comment.