From bafea3e79a9d9dd9792df2421314db2661293b2b Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Thu, 6 Apr 2017 21:06:40 +0100 Subject: [PATCH] Add text type by default to tester page --- gateway/assets/script/bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/assets/script/bootstrap.js b/gateway/assets/script/bootstrap.js index a86b944d..6725878d 100644 --- a/gateway/assets/script/bootstrap.js +++ b/gateway/assets/script/bootstrap.js @@ -83,7 +83,7 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md $scope.invocation.request = ""; $scope.invocationResponse = ""; $scope.invocationStatus = ""; - $scope.invocation.contentType = ""; + $scope.invocation.contentType = "text"; } };