diff --git a/module/bug/ui/batchcreate.html.php b/module/bug/ui/batchcreate.html.php index f716093f0f..780f500480 100644 --- a/module/bug/ui/batchcreate.html.php +++ b/module/bug/ui/batchcreate.html.php @@ -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); diff --git a/module/testcase/ui/batchcreate.html.php b/module/testcase/ui/batchcreate.html.php index 97f1d049bb..24c94ee689 100644 --- a/module/testcase/ui/batchcreate.html.php +++ b/module/testcase/ui/batchcreate.html.php @@ -169,6 +169,7 @@ $items[] = array $items[] = array ( 'name' => 'precondition', + 'control' => 'textarea', 'label' => $lang->testcase->precondition, 'hidden' => zget($visibleFields, 'precondition', true, false), 'width' => '200px',