From db02eb695da276e67ef3550316e3d0ab81f0c895 Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Thu, 25 May 2023 15:13:41 +0800 Subject: [PATCH] * Fix bug #34964 again. --- module/project/js/execution.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/js/execution.js b/module/project/js/execution.js index 7aa4a513f7..2e1f3c66cc 100644 --- a/module/project/js/execution.js +++ b/module/project/js/execution.js @@ -111,7 +111,7 @@ $(function() if(data.status === 'wait') checkedWait++; if(data.status === 'doing') checkedDoing++; - if(data.nestPathLevel == 1) executionCount++; + if('status' in data) executionCount++; }); if(status != 'all') return (checkedTotal ? checkedExecutions : executionSummary).replace('%s', executionCount);