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

@@ -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',
},