Remove points display from informational flags

Informational flags are context-only and don't affect the score,
so displaying "0 pts" was redundant and confusing.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-20 23:10:28 +01:00
parent c07254f93a
commit 8106b86bcd
2 changed files with 1 additions and 2 deletions

View File

@@ -197,7 +197,7 @@ public class PdfReportService
col.Item().Text("Information").Bold().FontSize(10).FontColor(Colors.Blue.Darken1);
foreach (var flag in infoFlags)
{
col.Item().PaddingTop(5).Text($"• {flag.Title} ({flag.ScoreImpact} pts)").FontSize(9).Bold();
col.Item().PaddingTop(5).Text($"• {flag.Title}").FontSize(9).Bold();
col.Item().Text($" {flag.Description}").FontSize(8).FontColor(Colors.Grey.Darken1);
}
});