update_cow_list_detail_page

This commit is contained in:
NYD
2026-01-07 17:56:22 +09:00
parent f5b52df26f
commit 9e5ffb2c15
5 changed files with 360 additions and 45 deletions

View File

@@ -110,6 +110,7 @@ export default function CowOverviewPage() {
farmerName: string | null;
farmAvgScore: number | null;
regionAvgScore: number | null;
histogram: { bin: number; count: number; farmCount: number }[];
} | null>(null)
// 4. 분포/비교 데이터
@@ -762,6 +763,7 @@ export default function CowOverviewPage() {
regionRank={selectionIndex?.regionRank}
highlightMode={highlightMode}
onHighlightModeChange={setHighlightMode}
selectionIndexHistogram={selectionIndex?.histogram || []}
regionTotal={selectionIndex?.regionTotal}
chartFilterTrait={chartFilterTrait}
onChartFilterTraitChange={setChartFilterTrait}
@@ -1760,6 +1762,7 @@ export default function CowOverviewPage() {
regionRank={selectionIndex?.regionRank}
regionTotal={selectionIndex?.regionTotal}
highlightMode={highlightMode}
selectionIndexHistogram={selectionIndex?.histogram || []}
onHighlightModeChange={setHighlightMode}
chartFilterTrait={chartFilterTrait}
onChartFilterTraitChange={setChartFilterTrait}