Skip to content

Commit

Permalink
Merge branch 'main' into support/3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Dec 9, 2023
2 parents 562230c + 5d51384 commit 1e11a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/zato-web-admin/src/zato/admin/static/js/scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ $.fn.zato.scheduler.create = function(job_type) {
$.fn.zato.scheduler.execute = function(id) {

var callback = function(data, status) {
var success = status == 'success';
var success = (status == 'success' || status == 'parsererror');
if(success) {
msg = 'OK, request submitted';
}
Expand Down

0 comments on commit 1e11a89

Please sign in to comment.