diff --git a/src/js/components/Overview/Chart.tsx b/src/js/components/Overview/Chart.tsx index 55428040..82eb7c7a 100644 --- a/src/js/components/Overview/Chart.tsx +++ b/src/js/components/Overview/Chart.tsx @@ -62,7 +62,11 @@ const Chart = memo(({ chartConfig, data, units, id }: ChartProps) => { if (val === undefined) return; navigate(`/${i18n.language}/search?${id}=${val}`); }} - renderPopupBody={(_f, d) => <>Count: {d} {units}} + renderPopupBody={(_f, d) => ( + <> + Count: {d} {units} + + )} /> ); }