mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
fix(IF Node): Fix typo in combine description (no-changelog) (#5964)
This commit is contained in:
parent
0776257490
commit
18d5156994
|
@ -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',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -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',
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue