Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Commit

Permalink
fix: lint (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored May 5, 2019
1 parent 587580f commit 7a89ae8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/superset-ui-preset-chart-xy/src/Line/Line.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ const CIRCLE_STYLE = { strokeWidth: 1.5 };
class LineChart extends PureComponent<Props> {
static defaultProps = defaultProps;

encoder: Encoder;
private createEncoder: () => void;

constructor(props: Props) {
super(props);

Expand All @@ -76,9 +79,6 @@ class LineChart extends PureComponent<Props> {
this.renderChart = this.renderChart.bind(this);
}

encoder: Encoder;
private createEncoder: () => void;

renderChart(dim: Dimension) {
const { width, height } = dim;
const { data, margin, theme } = this.props;
Expand Down

0 comments on commit 7a89ae8

Please sign in to comment.