feat(Execute Workflow Node): Remove ignoreTypeMismatch option (no-changelog) (#12482)

This commit is contained in:
Charlie Kolb
2025-01-07 15:57:03 +01:00
committed by GitHub
parent 30f9c033db
commit c03fe0af38
5 changed files with 1 additions and 27 deletions

View File

@@ -61,11 +61,7 @@ const validateResourceMapperValue = (
});
if (!validationResult.valid) {
if (!resourceMapperField.ignoreTypeMismatchErrors) {
return { ...validationResult, fieldName: key };
} else {
paramValues[key] = resolvedValue;
}
return { ...validationResult, fieldName: key };
} else {
// If it's valid, set the casted value
paramValues[key] = validationResult.newValue;