diff --git a/module/kanban/control.php b/module/kanban/control.php index 0ff34832b9..48d41599a8 100644 --- a/module/kanban/control.php +++ b/module/kanban/control.php @@ -1122,6 +1122,7 @@ class kanban extends control $this->view->regionID = $regionID; $this->view->groupID = $groupID; $this->view->columnID = $columnID; + $this->view->appList = $this->loadModel('system')->getPairs(); $this->display(); } @@ -1176,6 +1177,7 @@ class kanban extends control $this->view->regionID = $regionID; $this->view->groupID = $groupID; $this->view->columnID = $columnID; + $this->view->appList = $this->loadModel('system')->getPairs(); $this->display(); } diff --git a/module/kanban/ui/importbuild.html.php b/module/kanban/ui/importbuild.html.php index 32921a166d..52ba3ecc46 100644 --- a/module/kanban/ui/importbuild.html.php +++ b/module/kanban/ui/importbuild.html.php @@ -30,6 +30,7 @@ $config->build->dtable->fieldList['id']['type'] = 'checkID'; unset($config->build->dtable->fieldList['branch']); unset($config->build->dtable->fieldList['path']); unset($config->build->dtable->fieldList['actions']); +$config->build->dtable->fieldList['system']['map'] = array(0 => '') + $appList; foreach($config->build->dtable->fieldList as $id => $field) $config->build->dtable->fieldList[$id]['sortType'] = false; diff --git a/module/kanban/ui/importrelease.html.php b/module/kanban/ui/importrelease.html.php index 81554ced35..0303f7249e 100644 --- a/module/kanban/ui/importrelease.html.php +++ b/module/kanban/ui/importrelease.html.php @@ -47,6 +47,13 @@ unset($config->release->dtable->fieldList['title']['link']); unset($config->release->dtable->fieldList['branch']); unset($config->release->dtable->fieldList['actions']); +$config->release->dtable->fieldList['name']['width'] = 120; + +$config->release->dtable->fieldList['system']['type'] = 'shortTitle'; +$config->release->dtable->fieldList['system']['checkbox'] = false; +$config->release->dtable->fieldList['system']['nestedToggle'] = false; +$config->release->dtable->fieldList['system']['map'] = array(0 => '') + $appList; + foreach($config->release->dtable->fieldList as $id => $field) $config->release->dtable->fieldList[$id]['sortType'] = false; formBase