Skip to content

Commit

Permalink
fix(designer): Replace missing state reassignment (#4228)
Browse files Browse the repository at this point in the history
Fix missing state reassignment for #4227
  • Loading branch information
ek68794998 committed Feb 20, 2024
1 parent d30c568 commit 1b03f5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export const operationMetadataSlice = createSlice({

const dependencies = getInputDependencies(inputParameters, rawInputs, swagger);
if (dependencies) {
dependencies.inputs = { ...dependencies.inputs, ...dependencies };
state.dependencies[nodeId].inputs = { ...state.dependencies[nodeId].inputs, ...dependencies };
}
},
addDynamicOutputs: (state, action: PayloadAction<AddDynamicOutputsPayload>) => {
Expand Down

0 comments on commit 1b03f5f

Please sign in to comment.