From c93eb192cafdcd8f812a513d7b95772454fa5927 Mon Sep 17 00:00:00 2001 From: Leandro Hernan Rojas Date: Sun, 6 Apr 2025 18:51:44 -0300 Subject: [PATCH] Add Patch PhTable in Customers 2 --- phronCare.UIBlazor/Pages/Sales/Customers.razor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phronCare.UIBlazor/Pages/Sales/Customers.razor b/phronCare.UIBlazor/Pages/Sales/Customers.razor index e5a1887..fb5cfb3 100644 --- a/phronCare.UIBlazor/Pages/Sales/Customers.razor +++ b/phronCare.UIBlazor/Pages/Sales/Customers.razor @@ -19,8 +19,8 @@ { @@ -63,8 +63,8 @@ else return new Dictionary { { "Id", c.Id }, - { "Nombre", c.Name }, - { "Razon Social", c.BusinessName }, + { "Nombre", c.Name ?? string.Empty }, + { "Razon Social", c.BusinessName ?? string.Empty }, { "Activo", c.Active ? "Sí" : "No" }, { "Código Externo", c.ExternalCode }, { "Crédito", c.HasCreditAccount ? "Sí" : "No" },