Fix custom node form (#699)
This commit is contained in:
parent
349bf5bba5
commit
0710f22291
|
@ -233,7 +233,7 @@ export default class CustomNodeModal extends React.Component<Props, State> {
|
||||||
'form-control': true,
|
'form-control': true,
|
||||||
'is-invalid': this.state[input.name] && invalids[input.name]
|
'is-invalid': this.state[input.name] && invalids[input.name]
|
||||||
})}
|
})}
|
||||||
value={this.state.name}
|
value={this.state[input.name]}
|
||||||
onChange={this.handleChange}
|
onChange={this.handleChange}
|
||||||
{...input}
|
{...input}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue