I created an output for my JavaScript flow control, and that output has 2 properties. When creating bindings the system sees the 2 properties fine, but the first one has a value and the second does not.
I used this code to set the values – it sees ABC but not XYZ:
return [0, { prop1: "ABC", prop2 : "XYZ"}]
Instead, if I define the first as an object and give this object 2 properties, it works with this coding:
According to this video, it seems that if I want to return 2 properties I need to put them in an object. Though I can’t understand how you got it to work. AppGyver: How to Use Custom Javascript - YouTube
Hi, I was able to reproduce the issue now and will report it forward. Looks like it matters if you try to use both properties at once – if I try your formula, the 2nd value is undefined, but if I alert that value alone, the output seems correct. That’s why I didn’t catch it last time