We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d4c14f commit de006dbCopy full SHA for de006db
apps/sim/executor/utils/start-block.ts
@@ -372,14 +372,10 @@ function buildIntegrationTriggerOutput(
372
if (isPlainObject(finalInput)) {
373
Object.assign(base, finalInput as Record<string, unknown>)
374
base.input = { ...(finalInput as Record<string, unknown>) }
375
- } else if (!Object.hasOwn(base, 'input')) {
+ } else {
376
base.input = finalInput
377
}
378
379
- if (!Object.hasOwn(base, 'input')) {
380
- base.input = getRawInputCandidate(workflowInput)
381
- }
382
-
383
return mergeFilesIntoOutput(base, workflowInput)
384
385
0 commit comments