mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Correct column options presented in "Move tasks to project..." on workboards
Summary: Ref T13368. The column options presented to the user are currently incorrect because the wrong set of columns are drawn from. Test Plan: On a workboard, used "Move tasks to project..." to target another board, saw that board's columns. Maniphest Tasks: T13368 Differential Revision: https://secure.phabricator.com/D20698
This commit is contained in:
parent
87f878ec8a
commit
31254c5124
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ final class PhabricatorProjectColumnBulkMoveController
|
|||
->executeLayout();
|
||||
|
||||
$dst_columns = $layout_engine->getColumns($dst_project->getPHID());
|
||||
$dst_columns = mpull($columns, null, 'getPHID');
|
||||
$dst_columns = mpull($dst_columns, null, 'getPHID');
|
||||
|
||||
$has_column = false;
|
||||
$dst_column = null;
|
||||
|
|
Loading…
Reference in a new issue