Skip to content

Commit

Permalink
fix(IF Node): Fix typo in combine description (no-changelog) (#5964)
Browse files Browse the repository at this point in the history
  • Loading branch information
filp authored Apr 14, 2023
1 parent 0776257 commit 18d5156
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/core/test/Helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
],
Expand Down
4 changes: 2 additions & 2 deletions packages/nodes-base/nodes/If/If.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
],
Expand Down

0 comments on commit 18d5156

Please sign in to comment.