fix: Change the UI text for some filter operations (#8360)

This commit is contained in:
Deborah
2024-01-18 08:50:54 +00:00
committed by GitHub
parent 99457019f7
commit 976fe2e6c8
3 changed files with 9 additions and 9 deletions

View File

@@ -100,7 +100,7 @@ export class SwitchV3 implements INodeType {
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-number
default: '={{}}',
description:
"The output's index to which send an input item, use expressions to calculate what input item should be routed to which output, expression must return a number",
'The output index to send the input item to. Use an expression to calculate which input item should be routed to which output. The expression must return a number.',
},
{
displayName: 'Routing Rules',

View File

@@ -193,7 +193,7 @@ export const genericFiltersCollection: INodeProperties = {
description: 'Field is greater than value',
},
{
name: 'Greater Than Or Equal',
name: 'Greater Than Or Equal To',
value: '_gte',
description: 'Field is greater than or equal to value',
},
@@ -208,7 +208,7 @@ export const genericFiltersCollection: INodeProperties = {
description: 'Field is less than value',
},
{
name: 'Less Than Or Equal',
name: 'Less Than Or Equal To',
value: '_lte',
description: 'Field is less than or equal to value',
},