Skip to content

Commit 39868fb

Browse files
committed
TraceTypeSelector Bugfix + bump
1 parent 9692739 commit 39868fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

babel.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
],
1414
"plugins": [
1515
"react-hot-loader/babel",
16-
"@babel/plugin-proposal-object-rest-spread",
16+
"@babel/plugin-transform-object-rest-spread",
1717
[
1818
"module-resolver",
1919
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@figlinq/react-chart-editor",
33
"description": "plotly.js chart editor react component UI",
4-
"version": "0.50.1",
4+
"version": "0.50.2",
55
"author": "Figlinq",
66
"bugs": {
77
"url": "https://github.com/figlinq/react-chart-editor/issues"

src/components/widgets/TraceTypeSelector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {TRACES_WITH_GL} from 'lib/constants';
99
const renderActionItems = (actionItems, item) =>
1010
actionItems
1111
? actionItems(item).map((action, i) =>
12-
action.onClick ? null : (
12+
!action.onClick ? null : (
1313
<a
1414
className="trace-item__actions__item"
1515
key={i}

0 commit comments

Comments
 (0)