From 2c3e43ea672f9bd4645514d3e48ab734e3670ad4 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Sat, 16 Dec 2023 10:31:03 +0800 Subject: [PATCH] * Fix bug #41661. --- module/project/ui/execution.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/ui/execution.html.php b/module/project/ui/execution.html.php index 52ef2b8cf6..d8170e69d7 100644 --- a/module/project/ui/execution.html.php +++ b/module/project/ui/execution.html.php @@ -63,7 +63,7 @@ $fnGenerateCols = function() use ($config, $project) if(!$this->cookie->showTask) { $fieldList['name']['type'] = 'title'; - unset($fieldList['name']['nestedToggle']); + if(!in_array($project->model, array('waterfall', 'waterfallplus'))) unset($fieldList['name']['nestedToggle']); } return array_values($fieldList);