fix js error on explore view (#2894)
* fix js error on explore view * bump version
This commit is contained in:
parent
155fec0a6b
commit
04fb0e2c2d
|
|
@ -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 ?
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "superset",
|
||||
"version": "0.18.3",
|
||||
"version": "0.18.4-alpha.1",
|
||||
"description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
|
||||
"license": "Apache-2.0",
|
||||
"directories": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue