Actualizar servicios.html

This commit is contained in:
2026-02-22 15:31:46 +00:00
parent d15a25a359
commit 81c2813440

View File

@@ -512,9 +512,9 @@
}
let matchesStatus = false;
// 👇 ESTA ES LA REGLA CAMBIADA 👇
if (activeStatusFilter === "ALL") {
if (stateInfo.is_final && searchTerm === "") matchesStatus = false;
else matchesStatus = true;
matchesStatus = true; // AHORA MUESTRA ABSOLUTAMENTE TODO SIN EXCEPCIÓN
} else {
matchesStatus = String(stateInfo.id) === activeStatusFilter;
}