Skip to content

Commit 2070a01

Browse files
committed
Pass context to nested child objects in Parameters
1 parent e500cf0 commit 2070a01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stateMachine/InputOutputProcessing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function processPayloadTemplate(payloadTemplate: PayloadTemplate, json: JSONValu
4141

4242
// Recursively process child object
4343
if (isPlainObj(value)) {
44-
resolvedValue = processPayloadTemplate(value, json);
44+
resolvedValue = processPayloadTemplate(value, json, context);
4545
}
4646

4747
// Only resolve value if key ends with `.$` and value is a string

0 commit comments

Comments
 (0)