Browse Source

fix(perf): Add chart back to all transactions (#52984)

We can't have a double chart row with only 1 allowed chart, adding back
related issues for now
Kev 1 year ago
parent
commit
d2f6b4035b

+ 1 - 0
static/app/views/performance/landing/views/allTransactionsView.tsx

@@ -17,6 +17,7 @@ export function AllTransactionsView(props: BasePerformanceViewProps) {
     canUseMetricsData(props.organization)
   ) {
     doubleChartRowCharts.unshift(PerformanceWidgetSetting.MOST_CHANGED);
+    doubleChartRowCharts.unshift(PerformanceWidgetSetting.MOST_RELATED_ISSUES);
   } else {
     doubleChartRowCharts.unshift(PerformanceWidgetSetting.MOST_REGRESSED);
     doubleChartRowCharts.push(PerformanceWidgetSetting.MOST_IMPROVED);