From ed37fd7df988fdd244106c5156c6573bbd6e58e4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:18:12 +0000 Subject: [PATCH 1/2] Initial plan From 0ed7834f4ab85802eaf9fa65720ddb374b05a5a0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:21:52 +0000 Subject: [PATCH 2/2] Move maxNotes constant to method level for better organization Co-authored-by: MWG-Logan <2997336+MWG-Logan@users.noreply.github.com> --- .../Functions/ProjectCompletionReportFunction.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bezalu.ProjectReporting.API/Functions/ProjectCompletionReportFunction.cs b/Bezalu.ProjectReporting.API/Functions/ProjectCompletionReportFunction.cs index f491664..e43ebac 100644 --- a/Bezalu.ProjectReporting.API/Functions/ProjectCompletionReportFunction.cs +++ b/Bezalu.ProjectReporting.API/Functions/ProjectCompletionReportFunction.cs @@ -217,10 +217,10 @@ private static Action TicketsSection(ProjectCompletionReportResponse { return c => { + const int maxNotes = 10; c.Column(col => { col.Item().Text("Tickets").FontSize(14).Bold(); - const int maxNotes = 10; foreach (var ticket in report.Tickets ?? []) col.Item().BorderBottom(1).PaddingVertical(4).Column(inner => {