Skip to content

Commit

Permalink
Schedule: Validation time input trigger fix (#2800)
Browse files Browse the repository at this point in the history
  • Loading branch information
maurofmferrao authored Nov 11, 2024
1 parent dc55931 commit 9050946
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/core/xibo-calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9050946

Please sign in to comment.