-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Description
In the example present at https://selecttransform.github.io/site/transform.html 10. Local Variables
I want a unified array rather than array of arrays.
e.g.
{
"rows": [
[
{
"type": "label",
"text": "Alice in Wonderland"
},
{
"type": "label",
"text": "Bob in Wonderland"
},
{
"type": "label",
"text": "Bart in Springfield"
},
{
"type": "label",
"text": "Marge in Springfield"
},
{
"type": "label",
"text": "Lisa in Springfield"
},
{
"type": "label",
"text": "Homer in Springfield"
},
{
"type": "label",
"text": "Maggie in Springfield"
}
]
]
}
rather than
{
"rows": [
[
{
"type": "label",
"text": "Alice in Wonderland"
},
{
"type": "label",
"text": "Bob in Wonderland"
}
],
[
{
"type": "label",
"text": "Bart in Springfield"
},
{
"type": "label",
"text": "Marge in Springfield"
},
{
"type": "label",
"text": "Lisa in Springfield"
},
{
"type": "label",
"text": "Homer in Springfield"
},
{
"type": "label",
"text": "Maggie in Springfield"
}
]
]
}
I couldn't achieve this, is it possible ?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels