From 518cfa686593e4274e13908fde3a548eb582e507 Mon Sep 17 00:00:00 2001 From: Loretta Date: Mon, 23 Mar 2026 17:43:06 +0100 Subject: [PATCH] Refactor measuring UI, centralize status logic - Reworked MeasuringIn to use tabbed interface with card view and improved form layout - Unified status badge/text/color logic via new MeasurementService helpers - Updated MeasuringOut to use centralized status display and improved order note handling - Added shipping date column to GridShippingDocument - Improved link styling in MgGridDataColumn - Removed redundant code and applied minor UI/layout tweaks for consistency and maintainability --- AyCode.Blazor.Components/Components/Grids/MgGridDataColumn.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AyCode.Blazor.Components/Components/Grids/MgGridDataColumn.cs b/AyCode.Blazor.Components/Components/Grids/MgGridDataColumn.cs index 93b0746..540194f 100644 --- a/AyCode.Blazor.Components/Components/Grids/MgGridDataColumn.cs +++ b/AyCode.Blazor.Components/Components/Grids/MgGridDataColumn.cs @@ -64,7 +64,7 @@ public class MgGridDataColumn : DxGridDataColumn builder.OpenElement(0, "a"); builder.AddAttribute(1, "href", url); builder.AddAttribute(2, "target", "_blank"); - builder.AddAttribute(3, "style", "text-decoration: none;"); + builder.AddAttribute(3, "style", "text-decoration: underline; color: inherit;"); builder.AddContent(4, context.DisplayText); builder.CloseElement(); };