bhch / react-json-form

JSON editing made easy using form inputs.
https://bhch.github.io/react-json-form/
BSD 3-Clause "New" or "Revised" License
94 stars 10 forks source link

Don't use indices to generate keys for array items #69

Open bhch opened 1 year ago

bhch commented 1 year ago

Currently, we're using indices for generating keys for array's children components. This may result in poor performance and also hinder optimization in child components.

Related: #67