diff options
author | thuva4 <tharma.thuva@gmail.com> | 2017-09-08 12:04:22 +0530 |
---|---|---|
committer | thuva4 <tharma.thuva@gmail.com> | 2017-09-11 19:08:22 +0530 |
commit | 6be94a3fab1c47cfacbb92caa730067af9ecf64e (patch) | |
tree | f4ad7d86aa023947177b2563fca1358ea8e43b3a | |
parent | 25d99dbc0c41217abd369a48fce1f69d636b7134 (diff) |
Fix the error in the podscontroller.
remove the unnecessary "$rootscope" in the controller's parameters.
Change-Id: Ia048af9e146e871003307af27faca24a5ee225ca
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
-rw-r--r-- | utils/test/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/test/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js b/utils/test/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js index 894fcc152..a64c1f43e 100644 --- a/utils/test/testapi/3rd_party/static/testapi-ui/components/pods/podsController.js +++ b/utils/test/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.' } } |