diff --git a/src/applications/maniphest/controller/ManiphestTaskListController.php b/src/applications/maniphest/controller/ManiphestTaskListController.php index 3b8db2ed52..971d9ea70e 100644 --- a/src/applications/maniphest/controller/ManiphestTaskListController.php +++ b/src/applications/maniphest/controller/ManiphestTaskListController.php @@ -330,8 +330,8 @@ final class ManiphestTaskListController extends ManiphestController { $group = $query->getParameter('group'); $order = $query->getParameter('order'); $is_draggable = - ($group == 'priority') || - ($group == 'none' && $order == 'priority'); + ($order == 'priority') && + ($group == 'none' || $group == 'priority'); $lists = new AphrontNullView(); $lists->appendChild('
');