From 897f9f8d9759d28cab6de5f72035bcdf331d9e18 Mon Sep 17 00:00:00 2001 From: Stuart Lang Date: Sun, 8 Mar 2026 18:59:30 +0000 Subject: [PATCH] fix: correct expand-all icon SVG in HTML report The top-left and top-right corners of the expandAll SVG had broken coordinates that drew outside the 0-16 viewBox, resulting in a wonky icon. Fixed by properly mirroring the working bottom corners vertically. Co-Authored-By: Claude Opus 4.6 --- TUnit.Engine/Reporters/Html/HtmlReportGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUnit.Engine/Reporters/Html/HtmlReportGenerator.cs b/TUnit.Engine/Reporters/Html/HtmlReportGenerator.cs index b332960955..cf262ba8f3 100644 --- a/TUnit.Engine/Reporters/Html/HtmlReportGenerator.cs +++ b/TUnit.Engine/Reporters/Html/HtmlReportGenerator.cs @@ -309,7 +309,7 @@ private static void AppendSearchAndFilters(StringBuilder sb, ReportSummary summa // Feature 2: Expand/Collapse All + Feature 3: Sort Toggle sb.AppendLine("
"); - sb.AppendLine(""); + sb.AppendLine(""); sb.AppendLine(""); sb.AppendLine(""); sb.AppendLine("Group:");