[web-cvp]failed to expand test results 09/43709/1
authorgrakiss <grakiss.wanglei@huawei.com>
Sat, 30 Sep 2017 06:48:30 +0000 (02:48 -0400)
committergrakiss <grakiss.wanglei@huawei.com>
Sat, 30 Sep 2017 06:48:30 +0000 (02:48 -0400)
JIRA: DOVETAIL-517

When click on the "expand" button, nothing happens.

Change-Id: Ibe1554baf047d56fa07e27e936c15b2664326382
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
cvp/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js

index 5f8cac8..8e63e65 100644 (file)
         }
 
         function openAll(){
-            angular.forEach(ctrl.cases, function(id, ele){
+            angular.forEach(ctrl.cases, function(ele, id){
                 ele.folder = false;
             });
         }
 
         function folderAll(){
-            angular.forEach(ctrl.cases, function(id, ele){
+            angular.forEach(ctrl.cases, function(ele, id){
                 ele.folder = true;
             });
         }