diff --git a/src/app/(admin)/admin/reports/page.tsx b/src/app/(admin)/admin/reports/page.tsx index 78014be..ab5b58a 100644 --- a/src/app/(admin)/admin/reports/page.tsx +++ b/src/app/(admin)/admin/reports/page.tsx @@ -1000,6 +1000,8 @@ function RoundPipelineTab() {
{rounds.map((round, idx) => { const stats = comparisonMap.get(round.id) as any + const isClosed = round.status === 'ROUND_CLOSED' || round.status === 'ROUND_ARCHIVED' + const progressValue = isClosed ? 100 : (stats?.completionRate ?? 0) return (
@@ -1014,14 +1016,12 @@ function RoundPipelineTab() {
{stats?.projectCount ?? 0} projects {stats?.evaluationCount ?? 0} evals - + {round.status?.replace('ROUND_', '') ?? 'DRAFT'}
- {stats?.completionRate != null && ( - - )} +
)