diff --git a/packages/views/projects/components/project-detail.tsx b/packages/views/projects/components/project-detail.tsx index bbc1c279a0..2fb7d21b90 100644 --- a/packages/views/projects/components/project-detail.tsx +++ b/packages/views/projects/components/project-detail.tsx @@ -478,6 +478,27 @@ export function ProjectDetail({ projectId }: { projectId: string }) { + {/* Progress */} + {projectIssues.length > 0 && (() => { + const doneCount = projectIssues.filter((i) => i.status === "done" || i.status === "cancelled").length; + const totalCount = projectIssues.length; + const pct = Math.round((doneCount / totalCount) * 100); + return ( +