From 90509464097e956f5c0ad5f92ecbf4479e424f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mauro=20Ferr=C3=A3o?= Date: Mon, 11 Nov 2024 12:46:59 +0000 Subject: [PATCH] Schedule: Validation time input trigger fix (#2800) relates to xibosignage/xibo#3518 --- ui/src/core/xibo-calendar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/core/xibo-calendar.js b/ui/src/core/xibo-calendar.js index d4d2b6b4ad..fd38cfa5dd 100644 --- a/ui/src/core/xibo-calendar.js +++ b/ui/src/core/xibo-calendar.js @@ -849,9 +849,9 @@ var setupScheduleForm = function(dialog) { }, 500); // Bind to the H:i:s fields - $form.find("#hours").on("change", evaluateDates); - $form.find("#minutes").on("change", evaluateDates); - $form.find("#seconds").on("change", evaluateDates); + $form.find("#hours").on("change keyup", evaluateDates); + $form.find("#minutes").on("change keyup", evaluateDates); + $form.find("#seconds").on("change keyup", evaluateDates); // Handle the repeating monthly selector // Run when the tab changes