Browse Source

Fix JS regression in cron preview

master
Pēteris Caune 3 years ago
parent
commit
cee023063b
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      static/js/update-timeout-modal.js

+ 1
- 1
static/js/update-timeout-modal.js View File

@ -152,7 +152,7 @@ $(function () {
}
$("#cron-preview" ).html(data);
var haveError = $("#invalid-arguments").size() > 0;
var haveError = $("#invalid-arguments").length > 0;
$("#update-cron-submit").prop("disabled", haveError);
}
});


Loading…
Cancel
Save