RandomFractals / vscode-data-preview

Data Preview 🈸 extension for importing 📤 viewing 🔎 slicing 🔪 dicing 🎲 charting 📊 & exporting 📥 large JSON array/config, YAML, Apache Arrow, Avro, Parquet & Excel data files
https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.vscode-data-preview
Apache License 2.0
555 stars 59 forks source link

Grid view bug for two JSON named arrays #336

Open geffgh opened 1 year ago

geffgh commented 1 year ago

JSON structures like this one doesn't work in Grid view. They either fail or show only one of the two named arrays. E.g. arrayA in the below example

[
    {
        "arrayA": [
            {
                "value": "text"
            }
        ],
        "arrayB": [
            {
                "another-value": "another text"
            }
        ]
    },
    {
        "arrayA": [
            {
                "value": "text"
            }
        ],
        "arrayB": [
            {
                "another-value": "another text"
            }
        ]
    }
]