From ba0e771f7ec2880aa722583189efd22050163d51 Mon Sep 17 00:00:00 2001 From: thuva4 Date: Fri, 8 Sep 2017 12:04:22 +0530 Subject: Fix the error in the podscontroller. remove the unnecessary "$rootscope" in the controller's parameters. Change-Id: Ia048af9e146e871003307af27faca24a5ee225ca Signed-off-by: thuva4 --- testapi/3rd_party/static/testapi-ui/components/pods/podsController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 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..a64c1f4 100644 --- a/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js +++ b/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js @@ -20,7 +20,7 @@ .controller('PodsController', PodsController); PodsController.$inject = [ - '$rootScope', '$scope', '$http', '$filter', '$state', 'testapiApiUrl','raiseAlert' + '$scope', '$http', '$filter', '$state', 'testapiApiUrl','raiseAlert' ]; /** @@ -97,7 +97,7 @@ } else{ ctrl.showError = true; - ctrl.error = 'Name is missing.' + ctrl.error = 'Name is missing.' } } -- cgit 1.2.3-korg