We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bad7df5 commit 3f0b19dCopy full SHA for 3f0b19d
client/src/pages/platform/workflow-editor/components/workflow-inputs/hooks/useWorkflowInputs.ts
@@ -207,10 +207,8 @@ export default function useWorkflowInputs({
207
208
saveWorkflowTestConfigurationInputsMutation.mutate({
209
saveWorkflowTestConfigurationInputsRequest: {
210
- inputs: {
211
- ...(workflowTestConfiguration ? workflowTestConfiguration.inputs : {}),
212
- [input.name]: getValues().testValue!,
213
- },
+ key: input.name,
+ value: getValues().testValue!,
214
},
215
workflowId: workflow.id!,
216
});
0 commit comments