clear key when run sequnetial run is off (#4088)
This commit is contained in:
@@ -279,7 +279,12 @@ function StartNode({ id, data }: NodeProps<StartNode>) {
|
||||
className="ml-auto"
|
||||
checked={data.runSequentially}
|
||||
onCheckedChange={(value) => {
|
||||
update({ runSequentially: value });
|
||||
update({
|
||||
runSequentially: value,
|
||||
sequentialKey: value
|
||||
? data.sequentialKey
|
||||
: null,
|
||||
});
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user