@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use consistent tag order in Maniphest list views and workboard cards

Summary: Fixes T11420. These are selected in newest-to-oldest order from the database, but we should show them in oldest-to-newest order in the UI.

Test Plan:
Tagged a couple tasks with "A, B, C" projects, saw correct order in UI:

{F1749351}

{F1749352}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11420

Differential Revision: https://secure.phabricator.com/D16367

+2 -1
+1 -1
src/applications/maniphest/view/ManiphestTaskListView.php
··· 96 96 97 97 $project_handles = array_select_keys( 98 98 $handles, 99 - $task->getProjectPHIDs()); 99 + array_reverse($task->getProjectPHIDs())); 100 100 101 101 $item->addAttribute( 102 102 id(new PHUIHandleTagListView())
+1
src/applications/project/view/ProjectBoardTaskCard.php
··· 128 128 } 129 129 130 130 if ($project_handles) { 131 + $project_handles = array_reverse($project_handles); 131 132 $tag_list = id(new PHUIHandleTagListView()) 132 133 ->setSlim(true) 133 134 ->setHandles($project_handles);