1
0
Fork 0
mirror of synced 2024-08-09 15:17:57 +12:00

ensure binding / value selection in automation persists

This commit is contained in:
Peter Clement 2022-05-19 15:58:56 +01:00
parent 617650bf80
commit 8364c95ccb

View file

@ -28,7 +28,6 @@
let blockComplete
let showLooping = false
$: rowControl = $automationStore.selectedAutomation.automation.rowControl
$: showBindingPicker =
block.stepId === "CREATE_ROW" || block.stepId === "UPDATE_ROW"
@ -256,7 +255,7 @@
on:change={toggleFieldControl}
defaultValue="Use values"
autoWidth
value={rowControl ? "Use bindings" : "Use values"}
value={block.rowControl ? "Use bindings" : "Use values"}
options={["Use values", "Use bindings"]}
placeholder={null}
/>