Skip to content

Commit

Permalink
Merge branch 'main' into support/3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Feb 3, 2025
2 parents 91d1e48 + ff2b500 commit d2bdb24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ debugpy
decorator==5.1.0
dill==0.2.5
distro==1.5.0
Django==4.2.17
Django==4.2.18
django-csp==3.8
docformatter==0.8
dropbox==10.10.0
Expand Down
2 changes: 2 additions & 0 deletions code/zato-web-admin/src/zato/admin/static/css/service/ide.css
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,13 @@ td.data-input-field-name {

#data-request {
height: 19.1vh;
font-size: 1rem;
}

#data-response {
height: 39.1vh;
margin-top: 3px;
font-size: 1rem;
}

.dimmed {
Expand Down
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 @@ -125,7 +125,7 @@ $.fn.zato.invoker.on_form_ended_common_impl = function(

if(has_response) {
if($.fn.zato.is_object(response.data)) {
response_data = $.fn.zato.to_json(response.data);
response_data = response.data; //$.fn.zato.to_json(response.data); JSON Parsing and Quotes
}
else {
response_data = response.data;
Expand Down

0 comments on commit d2bdb24

Please sign in to comment.