From 041ae7a95035c549f3bbf9d46605005ee05cea55 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 11 Oct 2024 11:15:19 -0600 Subject: [PATCH] =?UTF-8?q?Eliminar=20el=20l=C3=ADmite=20m=C3=A1ximo=20de?= =?UTF-8?q?=20fecha=20hasta=20el=20CURRENT=5FDATE.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/auditoría.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/auditoría.js b/js/auditoría.js index b8143ca..9269247 100644 --- a/js/auditoría.js +++ b/js/auditoría.js @@ -48,8 +48,8 @@ const store = reactive({ $(function () { store.filters.fecha_inicio = store.filters.fecha_fin = store.filters.fecha = null; $("#fecha, #fecha_inicio, #fecha_fin").datepicker({ - minDate: new Date(`${periodo_data.periodo_fecha_inicio}:00:00:00`), - maxDate: new Date(`${periodo_data.fecha_final}:00:00:00`), + // minDate: new Date(`${periodo_data.periodo_fecha_inicio}:00:00:00`), + maxDate: new Date(), dateFormat: "yy-mm-dd", showAnim: "slide", beforeShowDay: (date) => [(date.getDay() != 0), ""]