Hi,
I noticed that the “else-if” in the conditional transformer is not acting like it supposed to.
Here is an export with the transformer:
testcase-transformer_transformer.ndjson (1.0 KB)
When you change the site value to 3600 it will not go past else if statement even though the value should be correct. When comparing the cases they are identical.
Running 3.58.0-RC1 on our environment
Input:
{
"site" : "1700"
}
Output:
{
"site": "1700",
"test": "1700"
}
Input:
{
"site" : "3600"
}
Output:
{
"site": "3600"
}