Skip to content

Commit

Permalink
GH #1200 - Always show JSON responses.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Oct 4, 2024
1 parent 5b45e51 commit a2f985f
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/invoker.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ $.fn.zato.invoker.on_form_ended_common_impl = function(
}

$("#result-header").text(status);
$("#data-response").text(response_data);
$("#data-response").text(JSON.stringify(response_data));
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
Expand Down

0 comments on commit a2f985f

Please sign in to comment.