We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba48a7 commit e6996d2Copy full SHA for e6996d2
packages/core/src/util/field.ts
@@ -140,9 +140,10 @@ export const mapStateToDispatchFieldProps = (
140
ownProps: OwnPropsOfField
141
): DispatchFieldStateProps => {
142
const props: StatePropsOfField = mapStateToFieldProps(state, ownProps);
143
+ const { renderers, ...otherOwnProps } = ownProps;
144
return {
145
...props,
- ...ownProps,
146
+ ...otherOwnProps,
147
fields: state.jsonforms.fields || []
148
};
149
0 commit comments