diff --git a/module/kanban/config.php b/module/kanban/config.php index 3a08fde5c7..d45192d2b1 100644 --- a/module/kanban/config.php +++ b/module/kanban/config.php @@ -48,7 +48,7 @@ $config->kanban->fromType = array('execution', 'productplan', 'release', $config->kanban->executionField = array('name', 'status', 'end', 'PM', 'type', 'deleted'); $config->kanban->productplanField = array('title', 'status', 'begin', 'end', 'deleted'); $config->kanban->releaseField = array('name', 'status', 'date', 'deleted'); -$config->kanban->buildField = array('name', 'date', 'builder'); +$config->kanban->buildField = array('name', 'date', 'builder', 'deleted'); $config->kanban->default = new stdclass(); $config->kanban->default->story = new stdclass(); diff --git a/module/kanban/js/view.js b/module/kanban/js/view.js index 285317c107..3a770b80b5 100644 --- a/module/kanban/js/view.js +++ b/module/kanban/js/view.js @@ -629,6 +629,12 @@ function renderBuildItem(item, $item) '' ].join('')).appendTo($item); + var $statusBox = $info.children('.buildStatus'); + if(!$statusBox.length && item.deleted == '1') + { + $statusBox = $('' + productplanLang.deleted + '').appendTo($info); + } + /* Display build date. */ var $date = $info.children('.date'); var buildDate = $.zui.createDate(item.date);