* Fix bug#49064.

This commit is contained in:
xieqiyu
2024-05-15 15:09:51 +08:00
parent 75521f8278
commit 0532d25225
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ if(isset($executionType) && $executionType == 'kanban')
$items[] = array('name' => 'deadline', 'label' => $lang->bug->deadline, 'control' => 'date', 'width' => '136px', 'required' => isset($requiredFields['deadline']), 'ditto' => true);
/* Field of steps. */
$items[] = array('name' => 'steps', 'label' => $lang->bug->steps, 'width' => '240px', 'required' => isset($requiredFields['steps']));
$items[] = array('name' => 'steps', 'control' => 'textarea', 'label' => $lang->bug->steps, 'width' => '240px', 'required' => isset($requiredFields['steps']));
/* Field of type. */
$items[] = array('name' => 'type', 'label' => $lang->typeAB, 'control' => 'picker', 'items' => $lang->bug->typeList, 'value' => '', 'width' => '160px', 'required' => isset($requiredFields['type']), 'ditto' => true);