From 0ca0e26817107bb57602cec3b5f94e6b43e9112c Mon Sep 17 00:00:00 2001 From: thuva4 Date: Mon, 11 Sep 2017 19:32:19 +0530 Subject: Handle error in front-end Handle the error and show appropriate message, without showing the entire error to the users Change-Id: Ib5213190efc1e87d56a7329a4572b525a5e16a12 Signed-off-by: thuva4 --- .../static/testapi-ui/components/pods/podsController.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'testapi') diff --git a/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js b/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js index 894fcc1..8015bec 100644 --- a/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js +++ b/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js @@ -88,11 +88,12 @@ details: ctrl.details }; ctrl.podsRequest = - $http.post(pods_url, body).error(function (error) { + $http.post(pods_url, body).error(function (data, status) { ctrl.showError = true; - ctrl.error = - 'Error creating the new pod from server: ' + - angular.toJson(error); + if(status == 403){ + ctrl.error = + 'Error creating the new pod from server: Pod\'s name already exists' + } }); } else{ -- cgit 1.2.3-korg