From 852a3000467aba14388099d133d838149d6df337 Mon Sep 17 00:00:00 2001 From: thuva4 Date: Tue, 27 Feb 2018 16:58:12 +0530 Subject: 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 --- .../projects/project/testCases/testCasesController.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'testapi/opnfv_testapi/ui/components/projects/project/testCases') 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); } /** -- cgit 1.2.3-korg