From 67b5fa2ce0d9578140519cb617660c09cb480ff1 Mon Sep 17 00:00:00 2001 From: juan-server Date: Wed, 12 Aug 2026 11:01:47 -0500 Subject: [PATCH] correccion errores --- frontend/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/script.js b/frontend/script.js index 68e54fd..58f3590 100644 --- a/frontend/script.js +++ b/frontend/script.js @@ -128,7 +128,7 @@ function crearCardPendiente(p) { ['alta', 'media', 'baja'].forEach(function(u) { const activo = p.urgencia === u ? ' activo' : ''; const etiqueta = u.charAt(0).toUpperCase() + u.slice(1); - html += ''; + html += ''; }); html += ''; @@ -141,7 +141,7 @@ function crearCardPendiente(p) { ].forEach(function(e) { const activo = p.estado === e.val ? ' activo' : ''; const cls = e.val.replace(' ', '_'); - html += ''; + html += ''; }); html += '';