Skip to content

Commit

Permalink
Schedule: Validation error with up cursor input in Hours
Browse files Browse the repository at this point in the history
  • Loading branch information
maurofmferrao committed Oct 15, 2024
1 parent 614040e commit 0a49a7b
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 @@ -846,9 +846,9 @@ var setupScheduleForm = function(dialog) {
}, 500);

// Bind to the H:i:s fields
$form.find("#hours").on("keyup", evaluateDates);
$form.find("#minutes").on("keyup", evaluateDates);
$form.find("#seconds").on("keyup", evaluateDates);
$form.find("#hours").on("change", evaluateDates);
$form.find("#minutes").on("change", evaluateDates);
$form.find("#seconds").on("change", evaluateDates);

// Handle the repeating monthly selector
// Run when the tab changes
Expand Down

0 comments on commit 0a49a7b

Please sign in to comment.