fix(If Node): Update copy for type conversion parameter (#10769)

This commit is contained in:
Elias Meire
2024-09-11 14:12:33 +02:00
committed by GitHub
parent 6fa1919ca8
commit ee5fbc543c
4 changed files with 15 additions and 5 deletions

View File

@@ -109,7 +109,7 @@ function parseFilterConditionValues(
const getTypeDescription = (isStrict: boolean) => {
if (isStrict)
return "Try changing the type of comparison. Alternatively you can enable 'Convert Value Types'.";
return "Try changing the type of comparison. Alternatively you can enable 'Convert types where required'.";
return 'Try changing the type of the comparison.';
};
@@ -135,7 +135,7 @@ function parseFilterConditionValues(
return `
<p>Try either:</p>
<ol>
<li>Enabling 'Convert Value Types'</li>
<li>Enabling 'Convert types where required'</li>
<li>Converting the ${valuePosition} field to ${expectedType}${suggestFunction}</li>
</ol>
`;