mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(If Node): Update copy for type conversion parameter (#10769)
This commit is contained in:
@@ -4,4 +4,4 @@ export const NODE_RAN_MULTIPLE_TIMES_WARNING =
|
||||
export const LOCALHOST = '127.0.0.1';
|
||||
|
||||
export const ENABLE_LESS_STRICT_TYPE_VALIDATION =
|
||||
"Try changing the type of comparison. Alternatively you can enable 'Convert Value Types'.";
|
||||
"Try changing the type of comparison. Alternatively you can enable 'Convert types where required'.";
|
||||
|
||||
@@ -34,8 +34,9 @@ export const returnAllOrLimit: INodeProperties[] = [
|
||||
];
|
||||
|
||||
export const looseTypeValidationProperty: INodeProperties = {
|
||||
displayName: 'Convert Value Types',
|
||||
description: 'Whether to try casting value types based on the selected operator',
|
||||
displayName: 'Convert types where required',
|
||||
description:
|
||||
'If the type of an expression doesn\'t match the type of the comparison, n8n will try to cast the expression to the required type. E.g. for booleans <code>"false"</code> or <code>0</code> will be cast to <code>false</code>',
|
||||
name: 'looseTypeValidation',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
|
||||
Reference in New Issue
Block a user