Cannot use forEach on Default Form data on JSON Schema Form

Cannot use forEach on Default Form data on JSON Schema Form

Hey Kai1, Is the 'Default form data' and Object? You can only call the Array.prototype.forEach method on arrays. If this is your issue then you can convert your object to an array of key-value pairs with the Object.entries method and then chain on forEach to the result. This could look something like

Object.entries(jsonSchemaForm.data).forEach(d => {return d})

I hope I'm understanding your problem correctly and that this helps!