From e9a0656ab30ecc435a8a684bf6e606a203ad969c Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 31 Mar 2025 03:02:30 +0000 Subject: [PATCH] * [task#140281,done,0.2h] fix bug. --- module/execution/ui/taskkanban.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/ui/taskkanban.html.php b/module/execution/ui/taskkanban.html.php index cf08889026..2d9dd20652 100644 --- a/module/execution/ui/taskkanban.html.php +++ b/module/execution/ui/taskkanban.html.php @@ -44,7 +44,7 @@ foreach($kanbanGroup as $index => $group) $kanbanGroup[$index] = $group; } -$laneCount += count($kanbanGroup); +if(!empty($kanbanGroup)) $laneCount += count($kanbanGroup); $checkObject = new stdclass(); $checkObject->execution = $executionID;