diff --git a/module/bug/ui/common.field.php b/module/bug/ui/common.field.php index 548b4facec..d9ef075481 100644 --- a/module/bug/ui/common.field.php +++ b/module/bug/ui/common.field.php @@ -58,6 +58,7 @@ if(data('executionType') && data('executionType') == 'kanban') } $fields->field('title') + ->className('full:w-full') ->control('colorInput', array('colorValue' => data('bug.color'))); $fields->field('type') diff --git a/module/bug/ui/create.html.php b/module/bug/ui/create.html.php index e9904eac2a..15d6311d04 100644 --- a/module/bug/ui/create.html.php +++ b/module/bug/ui/create.html.php @@ -24,7 +24,7 @@ $fields->autoLoad('branch', 'module,execution,project,story,task,assignedTo') ->autoLoad('allUsers', 'assignedTo') ->autoLoad('region', 'lane'); -if(!$product->shadow) $fields->fullModeOrders('module,project,execution,plan'); +if(!$product->shadow) $fields->fullModeOrders('module,project,execution,plan', 'pri,title'); $fields->sort('execution,plan'); jsVar('bug', $bug);