From 266e872f8fc418daf01c5f5a35b722da4087f007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Mon, 30 Jun 2025 12:13:23 +0200 Subject: [PATCH] arreglado --- .../js/safekat/pages/presupuestoAdmin/sections/datosLibro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosLibro.js b/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosLibro.js index 1c706ff3..e8386283 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosLibro.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosLibro.js @@ -804,7 +804,7 @@ class DatosLibro { if (isNaN(valorActual) || valorActual < min) { this.paginas.val(min); - } else if (valorActual > max) { + } else if (valorActual > max && max !== null) { this.paginas.val(max); } }