diff --git a/packages/server/src/api/controllers/workflow/blockDefinitions.js b/packages/server/src/api/controllers/workflow/blockDefinitions.js index 21299076e3..5607ac8ee4 100644 --- a/packages/server/src/api/controllers/workflow/blockDefinitions.js +++ b/packages/server/src/api/controllers/workflow/blockDefinitions.js @@ -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"], },