jsonq icon indicating copy to clipboard operation
jsonq copied to clipboard

Allow grouping by a column that has a value of "0"

Open oscar-ol opened this issue 1 year ago • 0 comments

Having this data:

[
    {
        "name": "testA",
        "code": "0"
    },
    {
        "name": "testB",
        "code": "0"
    },
    {
        "name": "testC",
        "code": "1"
    }
]

When grouping by code, the items with code '0' were not returned because the if statement evaluated them as false.

oscar-ol avatar Dec 27 '22 18:12 oscar-ol