From b7c63daa7594f1e1f1cb3d87a0205fee5aada4e9 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Sat, 16 Dec 2023 16:24:13 +0800 Subject: [PATCH] * Fix bug #41554. --- module/execution/ui/burn.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/ui/burn.html.php b/module/execution/ui/burn.html.php index a1b9c5262d..4497cfc2b7 100644 --- a/module/execution/ui/burn.html.php +++ b/module/execution/ui/burn.html.php @@ -219,7 +219,7 @@ panel ), strpos($type, 'withdelay') !== false ? array ( - 'data' => $chartData['delayLine'], + 'data' => empty($chartData['delayLine']) ? array() : $chartData['delayLine'], 'type' => 'line', 'name' => $lang->execution->charts->burn->graph->delay, 'symbolSize' => 8,