diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-02-09 09:23:34 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-02-09 20:02:43 +0000 |
commit | 8b2562b4aa40eb7af9ef3049feb855959f38956a (patch) | |
tree | 413bfad8a4e6c89e2afde7152c8e4897af97d346 /server/sonar-web/design-system/src | |
parent | 871649ef098535cd7737b240d3350347180e12be (diff) | |
download | sonarqube-8b2562b4aa40eb7af9ef3049feb855959f38956a.tar.gz sonarqube-8b2562b4aa40eb7af9ef3049feb855959f38956a.zip |
SONAR-21571 Update dependencies: @types/* + @vitejs/plugin-react
Diffstat (limited to 'server/sonar-web/design-system/src')
-rw-r--r-- | server/sonar-web/design-system/src/components/BubbleChart.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/design-system/src/components/BubbleChart.tsx b/server/sonar-web/design-system/src/components/BubbleChart.tsx index 257b064ca60..9f2e0dee405 100644 --- a/server/sonar-web/design-system/src/components/BubbleChart.tsx +++ b/server/sonar-web/design-system/src/components/BubbleChart.tsx @@ -128,6 +128,7 @@ export function BubbleChart<T>(props: BubbleChartProps<T>) { (node: SVGSVGElement) => { nodeRef.current = node; zoomRef.current = zoom().scaleExtent([1, 10]).on('zoom', zoomed); + // @ts-expect-error Type instantiation is excessively deep and possibly infinite. select(nodeRef.current).call(zoomRef.current); }, [zoomed], |