1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Fixing definition for filter workflow block

This commit is contained in:
Andrew Kingston 2020-09-16 13:54:27 +01:00
parent 9f3ca42995
commit fdca9240e9

View file

@ -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"],
},