Skip to content

Commit

Permalink
fix js error on explore view (#2894)
Browse files Browse the repository at this point in the history
* fix js error on explore view

* bump version
  • Loading branch information
Alanna Scott committed Jun 2, 2017
1 parent 155fec0 commit 04fb0e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?
Expand Down
2 changes: 1 addition & 1 deletion superset/assets/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 04fb0e2

Please sign in to comment.