diff options
author | srichman333 <sarah_n_richman@brown.edu> | 2023-07-18 16:24:57 -0400 |
---|---|---|
committer | srichman333 <sarah_n_richman@brown.edu> | 2023-07-18 16:24:57 -0400 |
commit | 900efdb5c08397e53e1d00555fc6eac208eff5a1 (patch) | |
tree | ca017621e49aca38e578f6feefea063660eaf392 /src/client/views/nodes/DataVizBox/components/TableBox.tsx | |
parent | e7d914710dfe0aef07f35a0ea54c16adcf08600c (diff) |
brushed graph has can have multiple links + still link to the correct graph for data
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/TableBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/TableBox.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/TableBox.tsx b/src/client/views/nodes/DataVizBox/components/TableBox.tsx index 8c8264861..ff43f67d9 100644 --- a/src/client/views/nodes/DataVizBox/components/TableBox.tsx +++ b/src/client/views/nodes/DataVizBox/components/TableBox.tsx @@ -51,6 +51,7 @@ export class TableBox extends React.Component<TableBoxProps> { const embedding = Doc.MakeEmbedding(this.props.docView?.()!.rootDoc!); embedding._dataVizView = DataVizView.LINECHART; embedding._data_vizAxes = new List<string>([col, col]); + embedding._draggedFrom = this.props.docView?.()!.rootDoc!; embedding.annotationOn = annotationOn; //this.props.docView?.()!.rootDoc!; return embedding; }; |