From 3b5511a7035a58c0400cd881cb5feb9fc4f41512 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Fri, 15 May 2026 16:43:36 -0400 Subject: [PATCH] Fix corrupted Unicode characters and intake button rendering in Job Details - Replace mojibake box-drawing chars (U+2500 encoded as Windows-1252) with plain ASCII dashes throughout all comments in Details.cshtml - Fix intake button showing literal '✓' text: the entity was inside a C# string so Razor HTML-encoded the '&'; switched to Html.Raw() so the checkmark renders correctly Co-Authored-By: Claude Sonnet 4.6 --- .../Views/Jobs/Details.cshtml | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/PowderCoating.Web/Views/Jobs/Details.cshtml b/src/PowderCoating.Web/Views/Jobs/Details.cshtml index 195a4e0..9ddbb86 100644 --- a/src/PowderCoating.Web/Views/Jobs/Details.cshtml +++ b/src/PowderCoating.Web/Views/Jobs/Details.cshtml @@ -321,7 +321,7 @@
- @* ── Catalog Products ── *@ + @* -- Catalog Products -- *@ @if (catalogItems.Any()) {
Catalog Products
@@ -414,7 +414,7 @@
} - @* ── Custom Work ── *@ + @* -- Custom Work -- *@ @if (customItems.Any()) {
Custom Work
@@ -565,7 +565,7 @@ } - @* ── Labor ── *@ + @* -- Labor -- *@ @if (laborItems.Any()) {
Labor
@@ -616,7 +616,7 @@ } - @* ── Mobile cards ── *@ + @* -- Mobile cards -- *@
@foreach (var item in Model.Items) { @@ -1310,7 +1310,7 @@ - @(Model.IntakeDate.HasValue ? "Intake ✓" : "Intake") + @Html.Raw(Model.IntakeDate.HasValue ? "Intake ✓" : "Intake") } @{ @@ -2332,7 +2332,7 @@ - + - + - +