diff options
| author | bobzel <zzzman@gmail.com> | 2022-06-21 21:36:40 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-06-21 21:36:40 -0400 |
| commit | e691d8e72ba632f0ef2d4122fe7233f9a48d4439 (patch) | |
| tree | 1786cb4e5296444db74d7ce0010e9a1a59091802 /src/client/views/nodes/DataViz.tsx | |
| parent | fa890475baceb8468e3c6e8c6e49d1b1fc1b962a (diff) | |
fixed issues with register DataViz jsx.
Diffstat (limited to 'src/client/views/nodes/DataViz.tsx')
| -rw-r--r-- | src/client/views/nodes/DataViz.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/nodes/DataViz.tsx b/src/client/views/nodes/DataViz.tsx index 57c5c0259..a3ffade70 100644 --- a/src/client/views/nodes/DataViz.tsx +++ b/src/client/views/nodes/DataViz.tsx @@ -1,9 +1,9 @@ import React from "react"; +import { ViewBoxBaseComponent } from '../DocComponent'; import "./DataViz.scss"; import { FieldView, FieldViewProps } from "./FieldView"; -import { ViewBoxBaseComponent } from '../DocComponent'; -export class DataViz extends ViewBoxBaseComponent<FieldViewProps>() { +export class DataVizBox extends ViewBoxBaseComponent<FieldViewProps>() { constructor(props: any) { super(props); @@ -11,7 +11,7 @@ export class DataViz extends ViewBoxBaseComponent<FieldViewProps>() { public static LayoutString(fieldKey: string) { - return FieldView.LayoutString(DataViz, fieldKey); + return FieldView.LayoutString(DataVizBox, fieldKey); } render() { |
