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);