diff --git a/client/components/Editors/Chart/index.tsx b/client/components/Editors/Chart/index.tsx index 23239bd04..b4acae646 100644 --- a/client/components/Editors/Chart/index.tsx +++ b/client/components/Editors/Chart/index.tsx @@ -12,8 +12,8 @@ export interface ChartProps { export default function Chart(props: ChartProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/Config/index.tsx b/client/components/Editors/Config/index.tsx index e0799f6d4..81f212c2c 100644 --- a/client/components/Editors/Config/index.tsx +++ b/client/components/Editors/Config/index.tsx @@ -12,8 +12,8 @@ export interface ConfigProps { export default function Config(props: ConfigProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/Dialect/index.tsx b/client/components/Editors/Dialect/index.tsx index b1b38aec2..49b2796f1 100644 --- a/client/components/Editors/Dialect/index.tsx +++ b/client/components/Editors/Dialect/index.tsx @@ -13,8 +13,8 @@ export interface DialectProps { export default function Dialect(props: DialectProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/Package/index.tsx b/client/components/Editors/Package/index.tsx index 404f01981..392af6b8e 100644 --- a/client/components/Editors/Package/index.tsx +++ b/client/components/Editors/Package/index.tsx @@ -14,8 +14,8 @@ export interface PackageProps { export default function Package(props: PackageProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/Portal/index.tsx b/client/components/Editors/Portal/index.tsx index d60d22194..868508b7b 100644 --- a/client/components/Editors/Portal/index.tsx +++ b/client/components/Editors/Portal/index.tsx @@ -11,8 +11,8 @@ export interface PortalProps { export default function Portal(props: PortalProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/Resource/index.tsx b/client/components/Editors/Resource/index.tsx index 0436dae02..1618ae840 100644 --- a/client/components/Editors/Resource/index.tsx +++ b/client/components/Editors/Resource/index.tsx @@ -14,8 +14,8 @@ export interface ResourceProps { export default function Resource(props: ResourceProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/Schema/index.tsx b/client/components/Editors/Schema/index.tsx index 14699a3a4..9c9840cd9 100644 --- a/client/components/Editors/Schema/index.tsx +++ b/client/components/Editors/Schema/index.tsx @@ -13,8 +13,8 @@ export interface SchemaProps { export default function Schema(props: SchemaProps) { const store = React.useMemo(() => makeStore(props), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Editors/View/index.tsx b/client/components/Editors/View/index.tsx index 79d97646b..d21217991 100644 --- a/client/components/Editors/View/index.tsx +++ b/client/components/Editors/View/index.tsx @@ -14,8 +14,8 @@ export default function View(props: ViewProps) { const editorRef = React.useMemo(() => React.createRef(), []) const store = React.useMemo(() => makeStore(props, editorRef), Object.values(props)) return ( - - - + + + ) } diff --git a/client/components/Views/Report/index.tsx b/client/components/Views/Report/index.tsx index 2b1657258..a19e91fde 100644 --- a/client/components/Views/Report/index.tsx +++ b/client/components/Views/Report/index.tsx @@ -10,10 +10,10 @@ export interface ReportProps { export default function Report(props: ReportProps) { return ( -
- - {props.shallow ? : } -
+
+ + {props.shallow ? : } +
) }