We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06233c commit 948b6b4Copy full SHA for 948b6b4
src/data/composite.js
@@ -526,7 +526,10 @@ export function compositeFrom(description) {
526
? compositeFrom(step.toResolvedComposition())
527
: step));
528
529
- const inputMetadata = getStaticInputMetadata(description.inputMapping ?? {});
+ const inputMetadata =
530
+ (description.inputMapping
531
+ ? getStaticInputMetadata(description.inputMapping)
532
+ : {});
533
534
function _mapDependenciesToOutputs(providedDependencies) {
535
if (!description.outputs) {
0 commit comments