We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e305a86 commit 86ffe84Copy full SHA for 86ffe84
1 file changed
web/src/components/Incidents/AlertsChart/AlertsChart.tsx
@@ -76,7 +76,7 @@ const AlertsChart = ({ theme }: { theme: 'light' | 'dark' }) => {
76
}, [alertsData]);
77
78
useEffect(() => {
79
- setChartContainerHeight(chartData?.length < 5 ? 300 : chartData?.length * 60);
+ setChartContainerHeight(chartData?.length < 5 ? 300 : chartData?.length * 55);
80
setChartHeight(chartData?.length < 5 ? 250 : chartData?.length * 55);
81
}, [chartData]);
82
0 commit comments