diff options
author | kousu <nick@kousu.ca> | 2018-01-22 19:10:09 -0500 |
---|---|---|
committer | kousu <nick@kousu.ca> | 2018-01-25 11:09:22 -0500 |
commit | 602caf390d9fd2626030b8c0961389622e380816 (patch) | |
tree | 13ad31b4416f85c8fe7f372b8e61540bb5ef0703 /app/Template | |
parent | 3fbd751ad41f50871f8826a007488e87f286d237 (diff) |
Set the correct swimlane/column ID when moving a task via its internal dialog.
Fixes https://github.com/kanboard/kanboard/issues/3114.
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/task_move_position/show.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Template/task_move_position/show.php b/app/Template/task_move_position/show.php index a73be785..dbbfdbd4 100644 --- a/app/Template/task_move_position/show.php +++ b/app/Template/task_move_position/show.php @@ -7,6 +7,7 @@ <?= $this->app->component('task-move-position', array( 'saveUrl' => $this->url->href('TaskMovePositionController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), 'board' => $board, + 'task' => $task, 'swimlaneLabel' => t('Swimlane'), 'columnLabel' => t('Column'), 'positionLabel' => t('Position'), |