aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/DataVizBox.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-08-17 13:27:06 -0400
committerbobzel <zzzman@gmail.com>2023-08-17 13:27:06 -0400
commit992dc2bdb82ac304945a1dad43a885350587c017 (patch)
treeaa57d86e87c820522c1b18253b86306c1b226cc9 /src/client/views/nodes/DataVizBox/DataVizBox.tsx
parent7d39e9164ab481c15880e44374a00abff48a9e1c (diff)
fixed field name mismatch in dataVizBox
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DataVizBox.tsx')
-rw-r--r--src/client/views/nodes/DataVizBox/DataVizBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx
index 9c59fcd13..c07ab5ba1 100644
--- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx
+++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx
@@ -155,7 +155,7 @@ export class DataVizBox extends ViewBoxAnnotatableComponent<FieldViewProps>() {
componentDidMount() {
this.props.setContentView?.(this);
this.fetchData();
- if (!this.layoutDoc._dataVizView) this.layoutDoc._dataVizView = this.dataVizView;
+ if (!this.layoutDoc._dataViz) this.layoutDoc._dataViz = this.dataVizView;
}
fetchData() {