From 18d5156994dc0fe76fddaeb27471cef50f27d6b2 Mon Sep 17 00:00:00 2001 From: Filipe Dobreira Date: Fri, 14 Apr 2023 08:22:41 -0400 Subject: [PATCH] fix(IF Node): Fix typo in combine description (no-changelog) (#5964) --- packages/core/test/Helpers.ts | 4 ++-- packages/nodes-base/nodes/If/If.node.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/core/test/Helpers.ts b/packages/core/test/Helpers.ts index 8c4cb22a8..c38362b82 100644 --- a/packages/core/test/Helpers.ts +++ b/packages/core/test/Helpers.ts @@ -287,12 +287,12 @@ class NodeTypesClass implements INodeTypes { options: [ { name: 'ALL', - description: 'Only if all conditions are meet it goes into "true" branch.', + description: 'Only if all conditions are met it goes into "true" branch.', value: 'all', }, { name: 'ANY', - description: 'If any of the conditions is meet it goes into "true" branch.', + description: 'If any of the conditions is met it goes into "true" branch.', value: 'any', }, ], diff --git a/packages/nodes-base/nodes/If/If.node.ts b/packages/nodes-base/nodes/If/If.node.ts index f437e8934..96b016f74 100644 --- a/packages/nodes-base/nodes/If/If.node.ts +++ b/packages/nodes-base/nodes/If/If.node.ts @@ -290,12 +290,12 @@ export class If implements INodeType { options: [ { name: 'ALL', - description: 'Only if all conditions are meet it goes into "true" branch', + description: 'Only if all conditions are met it goes into "true" branch', value: 'all', }, { name: 'ANY', - description: 'If any of the conditions is meet it goes into "true" branch', + description: 'If any of the conditions is met it goes into "true" branch', value: 'any', }, ],