hi im getting a ‘fusetools fuse.reactive.ArrayMirror’ on a json fetch when displaying the times:
{
"status": "ok",
"listings": [
{
"title": "Kingsman - The Golden Circle",
"times": [
"13:55",
"16:15",
"18:50",
"19:50",
"20:25"
]
}
]
}
<Each Items="{dataMovies.listings}">
<Text Value="{title}" TextWrapping="NoWrap" FontSize="20" /> //<---- works fine
<Text Value="{times}" TextWrapping="Wrap" FontSize="13" /> //<---- displays 'fusetools fuse.reactive.ArrayMirror'
</Each>