From fbbd1ffe0d90169ae07937d0281ba82e94fadc14 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Fri, 28 Feb 2025 07:39:35 +0000 Subject: [PATCH] * [bug#60175,done,0.2h] fix bug. --- module/execution/ui/kanban.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/ui/kanban.html.php b/module/execution/ui/kanban.html.php index be73531dc5..ce90e03d5a 100644 --- a/module/execution/ui/kanban.html.php +++ b/module/execution/ui/kanban.html.php @@ -165,7 +165,7 @@ jsVar('priv', if(!$features['story']) unset($lang->kanban->type['story']); if(!$features['qa']) unset($lang->kanban->type['bug']); -unset($lang->kanban->type['epic'], $lang->kanban->type['requirement']); +unset($lang->kanban->type['epic'], $lang->kanban->type['requirement'], $lang->kanban->type['risk']); $executionItems = array(); foreach($executionList as $childExecution) $executionItems[] = array('text' => $childExecution->name, 'url' => createLink('execution', 'kanban', "kanbanID={$childExecution->id}"));