summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthuva4 <tharma.thuva@gmail.com>2018-02-27 16:58:12 +0530
committerthuva4 <tharma.thuva@gmail.com>2018-02-27 16:58:12 +0530
commit852a3000467aba14388099d133d838149d6df337 (patch)
treedbd2c6b4000f056382be785c58d890ca7d9cbab6
parent3178bbeebb22f94eb66f31152ed314dacbf5a1de (diff)
Add resource name in testcase confirm modal
Add the name of the testcases in the delete confirm modal Change-Id: I03815865aaedf590c99fdb3a887a4b8cf07652d9 Signed-off-by: thuva4 <tharma.thuva@gmail.com>
-rw-r--r--testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js12
1 files changed, 10 insertions, 2 deletions
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 6d3c245..9a865d3 100644
--- a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js
+++ b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js
@@ -84,7 +84,15 @@
* message
*/
function openBatchDeleteModal() {
- confirmModal("Delete",ctrl.batchDelete);
+ var deleteObjects = []
+ ctrl.checkBox.forEach(function(testcase, index){
+ if(!ctrl.showError){
+ if(testcase){
+ deleteObjects.push(ctrl.data.testcases[index].name)
+ }
+ }
+ });
+ confirmModal("Delete", 'testcases', ctrl.batchDelete, deleteObjects);
}
/**
@@ -149,7 +157,7 @@
* message
*/
function openDeleteTestModal(name) {
- confirmModal("Delete", ctrl.deleteTestCase, name);
+ confirmModal("Delete", 'testcases', ctrl.deleteTestCase, name);
}
/**