diff --git a/app/components/chart-published.tsx b/app/components/chart-published.tsx index 98978599f..55918b421 100644 --- a/app/components/chart-published.tsx +++ b/app/components/chart-published.tsx @@ -90,14 +90,33 @@ export const ChartPublished = (props: ChartPublishedProps) => { ) : ( - - - + <> + + {state.layout.meta.title[locale] && ( + + )} + {state.layout.meta.description[locale] && ( + <Description text={state.layout.meta.description[locale]} /> + )} + </Flex> + <ChartWrapper layout={state.layout}> + <ChartPublishedInner + dataSource={dataSource} + state={state} + chartConfig={getChartConfig(state)} + configKey={configKey} + /> + </ChartWrapper> + </> )} </ChartTablePreviewProvider> );