fix(IF Node): Fix typo in combine description (no-changelog) (#5964)

This commit is contained in:
Filipe Dobreira 2023-04-14 08:22:41 -04:00 committed by GitHub
parent 0776257490
commit 18d5156994
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -287,12 +287,12 @@ class NodeTypesClass implements INodeTypes {
options: [ options: [
{ {
name: 'ALL', 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', value: 'all',
}, },
{ {
name: 'ANY', 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', value: 'any',
}, },
], ],

View file

@ -290,12 +290,12 @@ export class If implements INodeType {
options: [ options: [
{ {
name: 'ALL', 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', value: 'all',
}, },
{ {
name: 'ANY', 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', value: 'any',
}, },
], ],