Skip to content

Commit 97de022

Browse files
author
epriestley
committedJul 3, 2013
Minor, fix some margins on the homepage directory view.
1 parent 6aee862 commit 97de022

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/applications/directory/controller/PhabricatorDirectoryMainController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,6 @@ private function buildRevisionPanel() {
189189
->withResponsibleUsers(array($user_phid))
190190
->needRelationships(true);
191191

192-
// NOTE: We need to unlimit this query to hit the responsible user
193-
// fast-path.
194-
$revision_query->setLimit(null);
195192
$revisions = $revision_query->execute();
196193

197194
list($blocking, $active, ) = DifferentialRevisionQuery::splitResponsible(
@@ -230,7 +227,10 @@ private function buildRevisionPanel() {
230227

231228
$revision_view->setHandles($handles);
232229

233-
$panel->appendChild($revision_view);
230+
$list_view = $revision_view->render();
231+
$list_view->setFlush(true);
232+
233+
$panel->appendChild($list_view);
234234
$panel->setNoBackground();
235235

236236
return $panel;

0 commit comments

Comments
 (0)
Failed to load comments.