* [bug#67246,done,0.1h,0h] Fix total testtask error.

This commit is contained in:
wangyuting
2025-11-18 11:02:58 +08:00
parent c9288b624f
commit 9f3dfede5a
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -39,8 +39,9 @@ window.setStatistics = function(element, checkedIDList)
rows.forEach((row) => {
if(checkedIDList.length == 0 || checkedIDList.includes(row.id))
{
const task = row.data;
if(row.id.includes('_')) return;
const task = row.data;
if(task.rawStatus == 'wait')
{
waitCount ++;
+2 -1
View File
@@ -144,8 +144,9 @@ window.setStatistics = function(element, checkedIDList)
rows.forEach((row) => {
if(checkedIDList.length == 0 || checkedIDList.includes(row.id))
{
const task = row.data;
if(row.id.includes('_')) return;
const task = row.data;
if(task.rawStatus == 'wait')
{
waitCount ++;