Fixing definition for filter workflow block
This commit is contained in:
parent
847224f3b7
commit
a8be0682bc
|
@ -22,7 +22,7 @@ const ACTION = {
|
|||
},
|
||||
},
|
||||
customType: "record",
|
||||
title: "The record to be written",
|
||||
title: "Table",
|
||||
default: {},
|
||||
required: ["modelId"],
|
||||
},
|
||||
|
@ -206,19 +206,21 @@ const LOGIC = {
|
|||
inputs: {},
|
||||
schema: {
|
||||
inputs: {
|
||||
filter: {
|
||||
type: "string",
|
||||
title: "Reference Value",
|
||||
},
|
||||
condition: {
|
||||
type: "string",
|
||||
title: "Condition",
|
||||
enum: conditions,
|
||||
default: "equals",
|
||||
},
|
||||
value: {
|
||||
type: "string",
|
||||
title: "Comparison Value",
|
||||
properties: {
|
||||
filter: {
|
||||
type: "string",
|
||||
title: "Reference Value",
|
||||
},
|
||||
condition: {
|
||||
type: "string",
|
||||
title: "Condition",
|
||||
enum: conditions,
|
||||
default: "equals",
|
||||
},
|
||||
value: {
|
||||
type: "string",
|
||||
title: "Comparison Value",
|
||||
},
|
||||
},
|
||||
required: ["filter", "condition", "value"],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue