diff --git a/gateway/assets/script/bootstrap.js b/gateway/assets/script/bootstrap.js index 275cec95..3ee6992b 100644 --- a/gateway/assets/script/bootstrap.js +++ b/gateway/assets/script/bootstrap.js @@ -59,8 +59,8 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md $http(options) .then(function(response) { - if ($scope.invocation && $scope.invocation.contentType == "json") { - $scope.invocationResponse = JSON.stringify(response.data, -1, " "); + if (typeof response.data == 'object') { + $scope.invocationResponse = JSON.stringify(response.data, null, 2); } else { $scope.invocationResponse = response.data; } @@ -205,4 +205,4 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md fetch(); } -]); \ No newline at end of file +]);