From bf6bc429d82a498eb17e436fd2bba0b5ac153530 Mon Sep 17 00:00:00 2001 From: Rene Pot Date: Wed, 23 Feb 2022 15:07:05 +0100 Subject: [PATCH 1/2] Rename filter to be condition --- packages/server/src/automations/steps/filter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/server/src/automations/steps/filter.js b/packages/server/src/automations/steps/filter.js index 80d3198cba..405cdbfa3e 100644 --- a/packages/server/src/automations/steps/filter.js +++ b/packages/server/src/automations/steps/filter.js @@ -16,10 +16,10 @@ exports.FilterConditions = FilterConditions exports.PrettyFilterConditions = PrettyFilterConditions exports.definition = { - name: "Filter", + name: "Condition", tagline: "{{inputs.field}} {{inputs.condition}} {{inputs.value}}", icon: "Branch2", - description: "Filter any automations which do not meet certain conditions", + description: "Conditionally halt automations which do not meet certain conditions", type: "LOGIC", internal: true, stepId: "FILTER", From 916cf2c8b19928de28ff9b26433c6351ccb733c7 Mon Sep 17 00:00:00 2001 From: Rene Pot Date: Wed, 23 Feb 2022 16:56:51 +0100 Subject: [PATCH 2/2] linting --- packages/server/src/automations/steps/filter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/server/src/automations/steps/filter.js b/packages/server/src/automations/steps/filter.js index 405cdbfa3e..7dbe0bc649 100644 --- a/packages/server/src/automations/steps/filter.js +++ b/packages/server/src/automations/steps/filter.js @@ -19,7 +19,8 @@ exports.definition = { name: "Condition", tagline: "{{inputs.field}} {{inputs.condition}} {{inputs.value}}", icon: "Branch2", - description: "Conditionally halt automations which do not meet certain conditions", + description: + "Conditionally halt automations which do not meet certain conditions", type: "LOGIC", internal: true, stepId: "FILTER",