From da5f22172c57e8ecfa6daf7dbd76b40f95d28ebe Mon Sep 17 00:00:00 2001 From: Chad Little Date: Thu, 1 May 2014 14:37:06 -0700 Subject: [PATCH] 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 --- src/applications/audit/view/PhabricatorAuditListView.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/applications/audit/view/PhabricatorAuditListView.php b/src/applications/audit/view/PhabricatorAuditListView.php index c402547618..e019f17daa 100644 --- a/src/applications/audit/view/PhabricatorAuditListView.php +++ b/src/applications/audit/view/PhabricatorAuditListView.php @@ -79,8 +79,6 @@ final class PhabricatorAuditListView extends AphrontView { public function render() { $list = $this->buildList(); - $list->setCards(true); - $list->setFlush(true); return $list->render(); } @@ -92,6 +90,7 @@ final class PhabricatorAuditListView extends AphrontView { $rowc = array(); $list = new PHUIObjectItemListView(); + $list->setCards(true); foreach ($this->commits as $commit) { $commit_phid = $commit->getPHID(); $commit_handle = $this->getHandle($commit_phid);