diff --git a/ChangeLog b/ChangeLog index a346acff4..4c7dcf225 100644 --- a/ChangeLog +++ b/ChangeLog @@ -18,6 +18,7 @@ Core functionalities moved to plugins: Improvements: +* Do not show empty swimlanes in public view * Change swimlane layout to save space on the screen * Add the possibility to set/unset max column height (column scrolling) * Show "Open this task" in dropdown menu for closed tasks diff --git a/app/Template/board/table_container.php b/app/Template/board/table_container.php index fb9212a78..83587c44f 100644 --- a/app/Template/board/table_container.php +++ b/app/Template/board/table_container.php @@ -25,20 +25,24 @@ )) ?> - 1): ?> - render('board/table_swimlane', array( + + + 1): ?> + render('board/table_swimlane', array( + 'project' => $project, + 'swimlane' => $swimlane, + 'not_editable' => isset($not_editable), + )) ?> + + + render('board/table_tasks', array( 'project' => $project, 'swimlane' => $swimlane, 'not_editable' => isset($not_editable), + 'board_highlight_period' => $board_highlight_period, )) ?> - - render('board/table_tasks', array( - 'project' => $project, - 'swimlane' => $swimlane, - 'not_editable' => isset($not_editable), - 'board_highlight_period' => $board_highlight_period, - )) ?> +