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; let matchesStatus = false;
// 👇 ESTA ES LA REGLA CAMBIADA 👇
if (activeStatusFilter === "ALL") { if (activeStatusFilter === "ALL") {
if (stateInfo.is_final && searchTerm === "") matchesStatus = false; matchesStatus = true; // AHORA MUESTRA ABSOLUTAMENTE TODO SIN EXCEPCIÓN
else matchesStatus = true;
} else { } else {
matchesStatus = String(stateInfo.id) === activeStatusFilter; matchesStatus = String(stateInfo.id) === activeStatusFilter;
} }