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
541 stars 58 forks source link

Grid view bug for two JSON named arrays #336

Open geffgh opened 11 months ago

geffgh commented 11 months 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"
            }
        ]
    }
]