Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14054875
D15297.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
686 B
Referenced Files
None
Subscribers
None
D15297.diff
View Options
diff --git a/src/applications/phid/view/PHUIHandleTagListView.php b/src/applications/phid/view/PHUIHandleTagListView.php
--- a/src/applications/phid/view/PHUIHandleTagListView.php
+++ b/src/applications/phid/view/PHUIHandleTagListView.php
@@ -52,6 +52,13 @@
protected function getTagContent() {
$handles = $this->handles;
+ // Remove any archived projects from the list.
+ foreach ($handles as $key => $handle) {
+ if ($handle->getStatus() == PhabricatorObjectHandle::STATUS_CLOSED) {
+ unset($handles[$key]);
+ }
+ }
+
// If the list is empty, we may render a "No Projects" tag.
if (!$handles) {
if (strlen($this->noDataString)) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 5:59 AM (1 d, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6711567
Default Alt Text
D15297.diff (686 B)
Attached To
Mode
D15297: Don't show archived project tags on workboard cards
Attached
Detach File
Event Timeline
Log In to Comment