mirror of
https://github.com/apache/superset.git
synced 2026-04-10 03:45:22 +00:00
fix js error on explore view (#2894)
* fix js error on explore view * bump version
This commit is contained in:
@@ -98,7 +98,7 @@ export default class SelectControl extends React.PureComponent {
|
||||
clearable: this.props.clearable,
|
||||
isLoading: this.props.isLoading,
|
||||
onChange: this.onChange,
|
||||
optionRenderer: () => opt.label,
|
||||
optionRenderer: (opt) => opt.label,
|
||||
};
|
||||
// Tab, comma or Enter will trigger a new option created for FreeFormSelect
|
||||
const selectWrap = this.props.freeForm ?
|
||||
|
||||
Reference in New Issue
Block a user