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

Update Audit to use Cards in ObjectList

Summary: For general consistency with Differential / other application searches. May look at "Cards" as the default view for everything.

Test Plan: Reload my Audit page, easier to read and find status colors.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: epriestley, Korvin

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

+1 -2
+1 -2
src/applications/audit/view/PhabricatorAuditListView.php
··· 79 79 80 80 public function render() { 81 81 $list = $this->buildList(); 82 - $list->setCards(true); 83 - $list->setFlush(true); 84 82 return $list->render(); 85 83 } 86 84 ··· 92 90 $rowc = array(); 93 91 94 92 $list = new PHUIObjectItemListView(); 93 + $list->setCards(true); 95 94 foreach ($this->commits as $commit) { 96 95 $commit_phid = $commit->getPHID(); 97 96 $commit_handle = $this->getHandle($commit_phid);