From 1e06bfdb6737907ad615f94cd89e64a82126668b Mon Sep 17 00:00:00 2001 From: liumengyi Date: Fri, 10 Nov 2023 16:50:19 +0800 Subject: [PATCH] * Fix bug of execution count. --- module/project/js/execution.ui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/module/project/js/execution.ui.js b/module/project/js/execution.ui.js index db6038c724..dbdbd4734e 100644 --- a/module/project/js/execution.ui.js +++ b/module/project/js/execution.ui.js @@ -71,6 +71,7 @@ window.footerSummary = function(element, checkedIdList) var doingCount = 0; rows.forEach(function(data) { + if(data.id.indexOf('tid') > -1) return; if(checkedIdList.length > 0 && checkedIdList.indexOf(data.id) > -1) { if(data.data.status == 'wait') waitCount ++;