From 50797032a67c6e3920edd8ab38e6453a17674cb8 Mon Sep 17 00:00:00 2001 From: Naafiyan Ahmed Date: Wed, 27 Jul 2022 13:57:26 -0400 Subject: this.addDocument does not exist --- src/client/views/nodes/DataVizBox/ChartBox.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/client/views/nodes/DataVizBox/ChartBox.tsx') diff --git a/src/client/views/nodes/DataVizBox/ChartBox.tsx b/src/client/views/nodes/DataVizBox/ChartBox.tsx index a2e4fd73c..34eee8ee8 100644 --- a/src/client/views/nodes/DataVizBox/ChartBox.tsx +++ b/src/client/views/nodes/DataVizBox/ChartBox.tsx @@ -1,8 +1,8 @@ import { observer } from 'mobx-react'; import * as React from 'react'; -import { Doc, HeightSym } from '../../../../fields/Doc'; +import { Doc } from '../../../../fields/Doc'; import { action, computed, observable } from 'mobx'; -import { Cast, NumCast, StrCast } from '../../../../fields/Types'; +import { NumCast, StrCast } from '../../../../fields/Types'; import { LineChart } from './components/LineChart'; import { Chart, ChartData } from './ChartInterface'; @@ -22,7 +22,7 @@ export interface DataPoint { @observer export class ChartBox extends React.Component { @observable private _chartData: ChartData | undefined = undefined; - @observable private currChart: LineChart | undefined; + private currChart: Chart | undefined; @computed get currView() { if (this.props.rootDoc._dataVizView) { @@ -39,8 +39,8 @@ export class ChartBox extends React.Component { } } - setCurrChart(chart: Chart | undefined) { - // this.currChart = chart; + setCurrChart(chart: Chart) { + this.currChart = chart; } @action -- cgit v1.2.3-70-g09d2