We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee2d88a commit cebf8deCopy full SHA for cebf8de
web-server/src/content/DoraMetrics/Incidents.tsx
@@ -116,7 +116,7 @@ export const AllIncidentsBody = () => {
116
const { trendsSeriesMap } = useDoraMetricsGraph();
117
const isTrendSeriesAvailable = head(
118
trendsSeriesMap?.changeFailureRateTrends || []
119
- )?.data?.some((s) => s.y);
+ )?.data?.some((s) => s?.y);
120
121
if (isLoading) return <MiniLoader label="Fetching incidents ..." />;
122
if (!allDeployments.length || !isTrendSeriesAvailable)
0 commit comments