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 672a806 commit 596a417Copy full SHA for 596a417
src/components/fieldComponents/Select.js
@@ -39,7 +39,7 @@ class Select extends Component {
39
render() {
40
let { value, name, displayName, help, error, touched, onChange, onBlur, fieldLayout, options } = this.props;
41
let formGroupProps = { error, touched, displayName, name, help, fieldLayout };
42
- let selectProps = { value, name, onChange, onBlur, loadOptions: this.fetchItems, valueKey: options.value? options.value : 'value', labelKey: options.label? options.label : 'label' };
+ let selectProps = { value, name, onChange, onBlur: (event) => onBlur(), loadOptions: this.fetchItems, valueKey: options.value? options.value : 'value', labelKey: options.label? options.label : 'label' };
43
44
if (!options.url && Array.isArray(options)) {
45
return (
0 commit comments