mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
do not pass FormNested's own inputProperties to FormNestedItem
This commit is contained in:
parent
6e9da3fbb7
commit
cde919b3ea
1 changed files with 2 additions and 2 deletions
|
@ -62,8 +62,8 @@ class FormNested extends PureComponent {
|
|||
};
|
||||
|
||||
render() {
|
||||
// do not pass FormNested's own value and control props down
|
||||
const properties = _.omit(this.props, 'value', 'control');
|
||||
// do not pass FormNested's own value, control and inputProperties props down
|
||||
const properties = _.omit(this.props, 'value', 'control', 'inputProperties');
|
||||
|
||||
return (
|
||||
<div className="form-group row form-nested">
|
||||
|
|
Loading…
Add table
Reference in a new issue