Dear all,
We upgraded our Design Studio to 1.4 and since then we get the following error in our scripts:
I have the following code:
if (...) {
...
var not_due = ...
...
}
else {
...
not_due = ...
...
}
It is the not_due variable in the else statement that is not recognized anymore. I cannot create a new variable not_due because then I get the error that variable not_due already exists. And I do not want to create a new variable.
It is like I have to define the variable before the IF statement but how can I make it clear to the system that not_due should be a float? The only variable I can create is a string or a number (int).
Kind regards,
Lieselot
