@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.

Don't show archived project tags on workboard cards

Summary: Ref T10349.

Test Plan:
- Added archived and unarchived project tags to a task.
- Saw unarchived tags, only, on cards.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10349

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

+7
+7
src/applications/phid/view/PHUIHandleTagListView.php
··· 52 52 protected function getTagContent() { 53 53 $handles = $this->handles; 54 54 55 + // Remove any archived projects from the list. 56 + foreach ($handles as $key => $handle) { 57 + if ($handle->getStatus() == PhabricatorObjectHandle::STATUS_CLOSED) { 58 + unset($handles[$key]); 59 + } 60 + } 61 + 55 62 // If the list is empty, we may render a "No Projects" tag. 56 63 if (!$handles) { 57 64 if (strlen($this->noDataString)) {