thehyve / react-json-to-table

react-json-to-table
GNU General Public License v3.0
36 stars 28 forks source link

Certain Valid JSON fails to parse #23

Open jchambers-ln opened 3 years ago

jchambers-ln commented 3 years ago

This valid JSON fails to parse: Just taking your example here and adding the "AList" part at the end.

image

Double checking with JSONlint that its valid image

{
    "Analyst": {
        "name": "Jack",
        "email": "jack@xyz.com"
    },
    "Loaded by": "Jills",
    "Load id": 34,
    "git id": "xxqaygqertqsg98qhpughqer",
    "Analysis Id": "7asdlnagsd98gfaqsgf",
    "Load Date": "July 12, 2018",
    "Data Source": "Study XY123-456",
    "Jira Ticket": "Foo-1",
    "Confluence URL": "http://myserver/wxyz",
    "Study sponsors": [{
            "name": "john",
            "email": "john@@xyz.com"
        },
        {
            "name": "jane",
            "email": "jane@@xyz.com"
        }
    ],
    "AList": [{
        "test": {
            "a": "a"
        }
    }]
}
jchambers-ln commented 3 years ago

This may be the same as this issue. https://github.com/thehyve/react-json-to-table/issues/17