vscode-data-preview icon indicating copy to clipboard operation
vscode-data-preview copied to clipboard

Grid view bug for two JSON named arrays

Open geffgh opened this issue 2 years ago • 0 comments

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"
            }
        ]
    }
]

geffgh avatar Aug 22 '23 10:08 geffgh