From aa01eaeaa52555ffe9ffce63ce510bf1696ca3b0 Mon Sep 17 00:00:00 2001 From: naielv <109038805+naielv@users.noreply.github.com> Date: Tue, 9 Sep 2025 11:06:02 +0200 Subject: [PATCH] update --- src/app_modules.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app_modules.js b/src/app_modules.js index 2d010c3..5fa3d8b 100644 --- a/src/app_modules.js +++ b/src/app_modules.js @@ -761,6 +761,7 @@ function TS_IndexElement( } // If persona field exists, sort by Region, then by Nombre if (a.Persona && b.Persona) { + console.log(a.Persona, SC_Personas[a.Persona]) const personaA = SC_Personas[a.Persona] || { Nombre: "", Region: "" }; const personaB = SC_Personas[b.Persona] || { Nombre: "", Region: "" }; if (personaA.Region < personaB.Region) return -1;