Skip to content

Commit 93ce84f

Browse files
committed
Fix importance column display and add no-High ILMismatch sample
- Fix count table column crush: add width:auto to sc-count table - Fix detail table: remove extra importance td from base64 blocks - Remove ▲/■/○ symbols from importance markers (plain text only) - Change "Med" to "Medium" in importance labels - Add lib/Logging.dll sample (ILMismatch Medium, no High changes) - Update sample counts: Modified 13→14, Compared 22→23 https://claude.ai/code/session_01HnKMFA576NFwa2RzB8vCqE
1 parent 8f2cad9 commit 93ce84f

5 files changed

Lines changed: 51 additions & 24 deletions

File tree

‎Services/HtmlReport/HtmlReportGenerateService.Helpers.cs‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ private static string ImportanceToStatusBg(ChangeImportance importance)
223223
private static string ImportanceToMarker(ChangeImportance importance)
224224
=> importance switch
225225
{
226-
ChangeImportance.High => "\u25B2 High",
227-
ChangeImportance.Medium => "\u25A0 Med",
228-
ChangeImportance.Low => "\u25CB Low",
226+
ChangeImportance.High => "High",
227+
ChangeImportance.Medium => "Medium",
228+
ChangeImportance.Low => "Low",
229229
_ => ""
230230
};
231231

‎Services/HtmlReport/HtmlReportGenerateService.Sections.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ private void AppendAssemblySemanticChangesRow(
457457

458458
string detailsId = $"semantic_{sectionPrefix}_{idx}";
459459
string highSuffix = summary.HighImportanceCount > 0
460-
? $" (\u25B2 {summary.HighImportanceCount} High)"
460+
? $" ({summary.HighImportanceCount} High)"
461461
: "";
462462
string summaryLabel = $" <summary class=\"diff-summary\">#{recordNo} {I18n("Show assembly semantic changes", "アセンブリ意味変更を表示")}{highSuffix}</summary>";
463463
string contentHtml = contentBuilder.ToString();

‎Services/HtmlReport/diff_report.css‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@
176176
table.semantic-changes-table.sc-detail td:nth-child(6), table.semantic-changes-table.sc-detail td:nth-child(7),
177177
table.semantic-changes-table.sc-detail td:nth-child(8) { text-align: center; }
178178
/* sc-count: Class(1) Change(2) High(3) Medium(4) Low(5) Total(6) — no checkbox column */
179+
table.semantic-changes-table.sc-count { width: auto; }
179180
table.semantic-changes-table.sc-count td:nth-child(2) { text-align: center; }
180181
table.semantic-changes-table.sc-count td:nth-child(3), table.semantic-changes-table.sc-count td:nth-child(4),
181182
table.semantic-changes-table.sc-count td:nth-child(5), table.semantic-changes-table.sc-count td:nth-child(6) { text-align: right; }

0 commit comments

Comments
 (0)