Skip to content

Commit 637099c

Browse files
Update NuGetClientPRHealth/HtmlGenerator.cs
Co-authored-by: Copilot <[email protected]>
1 parent 0b2e3af commit 637099c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

NuGetClientPRHealth/HtmlGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public static void Generate(DashboardData data, string outputPath)
3030
sb.AppendLine("<tr><th>Measurement</th><th>Value</th></tr>");
3131
sb.AppendLine($"<tr><td>Total number of PRs in range</td><td>{data.Metrics.TotalPRs}</td></tr>");
3232
sb.AppendLine($"<tr><td>Median: Hours to complete</td><td>{data.Metrics.MedianHoursToComplete:F1}</td></tr>");
33-
sb.AppendLine($"<tr><td>Percentage of PRs approved under 24 hrs</td><td>{data.Metrics.PercentApprovedUnder24h:F1}</td></tr>");
34-
sb.AppendLine($"<tr><td>Percentage of PRs completed under 24 hrs</td><td>{data.Metrics.PercentMergedUnder24h:F1}</td></tr>");
33+
sb.AppendLine($"<tr><td>Percentage of PRs approved under 24 hrs</td><td>{data.Metrics.PercentApprovedUnder24h:F1}%</td></tr>");
34+
sb.AppendLine($"<tr><td>Percentage of PRs completed under 24 hrs</td><td>{data.Metrics.PercentMergedUnder24h:F1}%</td></tr>");
3535
sb.AppendLine("</table>");
3636

3737
// Slow PRs

0 commit comments

Comments
 (0)