Closed linainu closed 2 years ago
restore method converted snapshot with nested keys
{ changes: { name: 'Jim Bob', address: { country: 'North Korea' } }, errors: {} }
into changeset with changes like below
[ { key: 'name', value: 'Jim Bob' }, { key: 'address', value: { country: 'North Korea' } } ]
fixed it to be:
[ { key: 'name', value: 'Jim Bob' }, { key: 'address.country', value: 'North Korea' } ]
restore method converted snapshot with nested keys
into changeset with changes like below
fixed it to be: