From 2f2b9f71e102a81c9c00e244fc5956195061ddf6 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Thu, 12 Mar 2026 14:04:31 -0400 Subject: [PATCH] feat: show inches value alongside formatted length in job editor Display raw inches in parentheses next to the architectural format in both Parts and Stock tables for easier reference. Co-Authored-By: Claude Opus 4.6 --- CutList.Web/Components/Pages/Jobs/Edit.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CutList.Web/Components/Pages/Jobs/Edit.razor b/CutList.Web/Components/Pages/Jobs/Edit.razor index 4e0dcea..35a0bf0 100644 --- a/CutList.Web/Components/Pages/Jobs/Edit.razor +++ b/CutList.Web/Components/Pages/Jobs/Edit.razor @@ -554,7 +554,7 @@ else { @part.Material.DisplayName - @ArchUnits.FormatFromInches((double)part.LengthInches) + @ArchUnits.FormatFromInches((double)part.LengthInches) (@(part.LengthInches)") @part.Quantity @(string.IsNullOrWhiteSpace(part.Name) ? "-" : part.Name) @@ -917,7 +917,7 @@ else { @stock.Material?.DisplayName - @ArchUnits.FormatFromInches((double)stock.LengthInches) + @ArchUnits.FormatFromInches((double)stock.LengthInches) (@(stock.LengthInches)") @(stock.Quantity == -1 ? "Unlimited" : stock.Quantity.ToString()) @stock.Priority