* [bug#62484,done,0.2h] fix bug.

This commit is contained in:
sunguangming
2025-05-19 09:26:26 +08:00
committed by 刘刚
parent 18c7047d42
commit 2e6fe091bc
+1 -1
View File
@@ -1105,7 +1105,7 @@ class execution extends control
if(!$isStage && !empty($this->view->execution) && $this->view->execution->type == 'stage') $isStage = true;
if(!empty($project) && in_array($project->model, $this->config->project->waterfallList))
{
if($project->model == 'waterfall') $isStage = true;
if(in_array($project->model, $this->config->project->waterfallList) && !isset($output['type'])) $isStage = true;
$parentStage = isset($output['parentStage']) ? $output['parentStage'] : 0;
$type = isset($output['type']) ? $output['type'] : '';
if($parentStage)