summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/ui/components/projects/project
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2018-01-18 06:58:27 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-18 06:58:27 +0000
commitf82dd79721fec6d4d6e5ac8b7b27cfec689b92ea (patch)
treeb422fd88e596f76af61b71846006c2ad1b1505b3 /testapi/opnfv_testapi/ui/components/projects/project
parent62fb9a03e047d70bb15c67d2748ffe377273d0b6 (diff)
parent16e83d89c4d4d64188bf6d0249050b2740dfd913 (diff)
Merge "Bug fixes in results, tastcases and header file"
Diffstat (limited to 'testapi/opnfv_testapi/ui/components/projects/project')
-rw-r--r--testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html6
-rw-r--r--testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js3
2 files changed, 5 insertions, 4 deletions
diff --git a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html
index 00dd0f1..ee87e0a 100644
--- a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html
+++ b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html
@@ -47,9 +47,9 @@
{{testcase.name}}
</a>
</td>
- <td>{{ ctrl.data.tier}}</td>
- <td>{{ctrl.data.blocking}}</td>
- <td>{{ctrl.data.ci_loop}}</td>
+ <td>{{testcase.tier}}</td>
+ <td>{{testcase.blocking}}</td>
+ <td>{{testcase.ci_loop}}</td>
<td ng-class="{'hidden': ! ((auth.projectNames.length>0) && auth.isAuthenticated)}">
<span class="podsTable-col">
<a class="text-warning" ng-click="testCasesCtrl.openUpdateTestModal(testcase.name)" title="Edit">
diff --git a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js
index 0045284..6d3c245 100644
--- a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js
+++ b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js
@@ -244,12 +244,13 @@
{label: 'blocking', type: 'text', required: false},
{label: 'criteria', type: 'text', required: false},
{label: 'domains', type: 'text', required: false},
+ {label: 'ci_loop', type: 'text', required: false},
{label: 'catalog_description', type: 'text', required: false}
];
ctrl.testcase = {name : null, description : null,version : null, tier : null, tags : null,
run : null, dependencies : null, trust : null, url : null, blocking : null,
- criteria : null, domains : null, catalog_description : null};
+ criteria : null, domains : null, ci_loop: null, catalog_description : null};
if(ctrl.data.text=="Update"){
ctrl.testcase = ctrl.data.testCase