Skip to content

Commit 8ec2d33

Browse files
committed
feat: update jsonInput method in DFlow view to call jsonInput on NodeFunctionView
1 parent a00ca19 commit 8ec2d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/d-flow/DFlow.view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export class NodeParameterView {
329329

330330
jsonInput(): NodeParameterInput {
331331
return <NodeParameterInput>{
332-
value: this._value instanceof NodeFunctionView ? this._value.json() : this._value,
332+
value: this._value instanceof NodeFunctionView ? this._value.jsonInput() : this._value,
333333
runtimeParameterDefinitionId: this.runtimeParameter?.id
334334
}
335335
}

0 commit comments

Comments
 (0)