-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
bugSomething isn't workingSomething isn't working
Description
When requesting data using the Adapter, we get a response like this:
{"id":1234,"data":"[{\"column1\":\"first\",\"column2\":\"second\",\"column3\":\"third\"}]"}Expected result:
The "data" field should be an actual array.
{
"id":1234,
"data": [
{"column1":"first","column2":"second","column3":"third"}
]
}Actual result
The "data" field is currently a string. So you need to run JSON.parse() in order to get the actual data.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working