diff --git a/module/block/control.php b/module/block/control.php index 42f7a744d0..cbcc420032 100644 --- a/module/block/control.php +++ b/module/block/control.php @@ -905,7 +905,7 @@ class block extends control foreach($projects as $projectID => $project) { - if($project->model == 'scrum') + if($project->model == 'scrum' or $project->model == 'kanban') { $this->app->loadClass('pager', $static = true); $pager = pager::init(0, 3, 1); diff --git a/module/block/view/projectstatisticblock.html.php b/module/block/view/projectstatisticblock.html.php index 2fec19c385..a64091dab3 100644 --- a/module/block/view/projectstatisticblock.html.php +++ b/module/block/view/projectstatisticblock.html.php @@ -134,7 +134,7 @@ $(function()
- model == 'scrum'):?> + model == 'scrum' or $project->model == 'kanban'):?>

block->story;?>

diff --git a/module/kanban/js/view.js b/module/kanban/js/view.js index 8aedcb64e9..8a54b42177 100644 --- a/module/kanban/js/view.js +++ b/module/kanban/js/view.js @@ -799,8 +799,8 @@ function initKanban($kanban) maxColHeight: 510, calcColHeight: calcColHeight, fluidBoardWidth: false, - minColWidth: 300, - maxColWidth: 300, + minColWidth: 287, + maxColWidth: 287, cardHeight: 60, displayCards: window.displayCards || 2, createColumnText: kanbanLang.createColumn,