i18n-json-to-xlsx-converter icon indicating copy to clipboard operation
i18n-json-to-xlsx-converter copied to clipboard

The original array of objects ended up not being correctly reduced, but understood as objects.

Open shuiRong opened this issue 4 months ago • 0 comments

Original in project

 "features": [
                {
                    "title": "Unlimited chatbots"
                },
                {
                    "title": "2,000,000 characters/month"
                }
]

Final restoration results

 "features": {
        "0": {
          "title": "Unlimited chatbots"
        },
        "1": {
          "title": "2,000,000 characters/month"
        }
}

shuiRong avatar Feb 16 '24 05:02 shuiRong