From d786e250bce2370b35da640d18e060bb7a6c581a Mon Sep 17 00:00:00 2001 From: sunguangming Date: Wed, 29 Oct 2025 03:48:55 +0000 Subject: [PATCH] * [bug#66332,done,0.2h] fix bug. --- module/bug/ui/create.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/ui/create.html.php b/module/bug/ui/create.html.php index b7da026a4a..92cb671705 100644 --- a/module/bug/ui/create.html.php +++ b/module/bug/ui/create.html.php @@ -17,7 +17,7 @@ $fields = useFields('bug.create'); if(!empty($executionType) && $executionType == 'kanban') $fields->merge('bug.kanban'); $fields->autoLoad('product', array('items' => 'product,module,assignedTo,story,execution,task,openedBuild,project,injection,identify,plan,case,' . (!empty($lang->bug->flowExtraFields) ? implode(',', $lang->bug->flowExtraFields) : ''), 'updateOrders' => true)) - ->autoLoad('branch', 'module,execution,project,story,task,assignedTo') + ->autoLoad('branch', 'module,execution,project,story,task,assignedTo,plan') ->autoLoad('module', 'assignedTo,story') ->autoLoad('project', 'project,execution,story,task,assignedTo,injection,identify,openedBuild') ->autoLoad('execution', 'execution,story,task,assignedTo,openedBuild')