You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After changing the way how `AutoForm` updates the node's models, nested
schemas, like the one used by `setHeader` no longer work as the key of
the property being changed is expressed using the `.` (dot) notation.
As an example: `headers.0.expression`
This means that we can't use the `key` as it is to set the values, as it
won't achieve the expected result.
The fix is to use `lodash/set` to navigate through the path and assign
the value in the right place.
fix: KaotoIO#727
After changing the way how `AutoForm` updates the node's models, nested
schemas, like the one used by `setHeader` no longer work as the key of
the property being changed is expressed using the `.` (dot) notation.
As an example: `headers.0.expression`
This means that we can't use the `key` as it is to set the values, as it
won't achieve the expected result.
The fix is to use `lodash/set` to navigate through the path and assign
the value in the right place.
fix: #727
Describe the Bug
After merging #726, the
setHeaders
processor is broken due to the change in theAutoForm
mechanism.Steps to Reproduce the Bug or Issue
setHeaders
processorScreenshots or Videos
No response
Platform
The text was updated successfully, but these errors were encountered: