mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -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: [
|
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',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue