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 8ec2d33 commit b77a180Copy full SHA for b77a180
src/components/d-flow/DFlow.view.ts
@@ -329,7 +329,13 @@ export class NodeParameterView {
329
330
jsonInput(): NodeParameterInput {
331
return <NodeParameterInput>{
332
- value: this._value instanceof NodeFunctionView ? this._value.jsonInput() : this._value,
+ value: this._value instanceof NodeFunctionView ? {
333
+ functionValue: this._value.jsonInput()
334
+ } : this._value?.__typename === "ReferenceValue" ? {
335
+ referenceValue: this._value as ReferenceValue
336
+ } : {
337
+ literalValue: this._value as LiteralValue
338
+ },
339
runtimeParameterDefinitionId: this.runtimeParameter?.id
340
}
341
0 commit comments