From e2d34a8c3fa976e210500a67dc089bebe27ad602 Mon Sep 17 00:00:00 2001 From: valenti Date: Mon, 13 Apr 2026 10:36:51 -0400 Subject: [PATCH] frontend fix --- src/components/ui/MeshTable/MeshTable.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/ui/MeshTable/MeshTable.tsx b/src/components/ui/MeshTable/MeshTable.tsx index 68c171a..0c06de4 100644 --- a/src/components/ui/MeshTable/MeshTable.tsx +++ b/src/components/ui/MeshTable/MeshTable.tsx @@ -67,6 +67,15 @@ const MeshTable = ({ title, height, dequienesRelationships, mainRut, forceExpand const getName = (rut: string) => entityNames[rut] || entityNames[normalizeRut(rut)] || ''; const rootIsPerson = !isSociedad(cleanMain); + if (rootIsPerson) { + return ( +
+

{title}

+

No aplica para persona natural

+
+ ); + } + const ownRels = relationships.filter((r: any) => r.label === 'OWNED_BY' && !r.information_source?.match_type );