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 6943cce commit f8c86edCopy full SHA for f8c86ed
src/components/fields/AxisCreator.js
@@ -89,7 +89,6 @@ class UnconnectedNewAxisCreator extends Component {
89
90
render() {
91
const icon = <PlusIcon />;
92
- const _ = this.props.localize;
93
const extraComponent = this.canAddAxis() ? (
94
<Button variant="no-text" icon={icon} onClick={() => this.updateAxis()} />
95
) : (
@@ -129,7 +128,7 @@ UnconnectedNewAxisCreator.contextTypes = {
129
128
130
const ConnectedNewAxisCreator = connectToContainer(UnconnectedNewAxisCreator);
131
132
-export class AxisCreator extends Component {
+class AxisCreator extends Component {
133
134
const isFirstTraceOfType =
135
this.context.data.filter(d => d.type === this.props.container.type)
0 commit comments