Values from microflow are coming as private properties of an object in javascript (Symbol)

2
I have created a custom widget which uses input from a microflow. The microflow retrieves objects from database and returns it as list. This list is then send to a react custom widget. However the values are coming as private properties of an object in javascript (Symbol – Symbol(mxObject)). Is there a way to get them outside this property?  
asked
4 answers
1

items[Object.getOwnPropertySymbols(items)[0]].jsonData.attributes

answered
0

Has this issue been solved?

answered
0

i have the same problem with this

answered
0

 
I solved the problem this way you can try it will 



items[Object.getOwnPropertySymbols(items)[0]].jsonData.attributes.IsMatchpic.valueI 
answered