From f9eff36aae211b3a3b571f93a5acc1643c347a2b Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Wed, 22 Apr 2026 01:26:27 +0800 Subject: [PATCH] feat: add PanelSections component for dashboard weather data visualization and market bucket analysis --- frontend/components/dashboard/PanelSections.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/components/dashboard/PanelSections.tsx b/frontend/components/dashboard/PanelSections.tsx index fa77423c..96bad106 100644 --- a/frontend/components/dashboard/PanelSections.tsx +++ b/frontend/components/dashboard/PanelSections.tsx @@ -871,7 +871,6 @@ export function ProbabilityDistribution({ marketBucket, detail, ); - if (probability == null) continue; const key = marketBucket.slug || @@ -882,7 +881,7 @@ export function ProbabilityDistribution({ rows.push({ key, label: formatMarketBucketDisplayLabel(marketBucket, detail), - probability, + probability: probability ?? 0, marketBucket, }); }