We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aee862 commit 97de022Copy full SHA for 97de022
src/applications/directory/controller/PhabricatorDirectoryMainController.php
@@ -189,9 +189,6 @@ private function buildRevisionPanel() {
189
->withResponsibleUsers(array($user_phid))
190
->needRelationships(true);
191
192
- // NOTE: We need to unlimit this query to hit the responsible user
193
- // fast-path.
194
- $revision_query->setLimit(null);
195
$revisions = $revision_query->execute();
196
197
list($blocking, $active, ) = DifferentialRevisionQuery::splitResponsible(
@@ -230,7 +227,10 @@ private function buildRevisionPanel() {
230
227
231
228
$revision_view->setHandles($handles);
232
229
233
- $panel->appendChild($revision_view);
+ $list_view = $revision_view->render();
+ $list_view->setFlush(true);
+
+ $panel->appendChild($list_view);
234
$panel->setNoBackground();
235
236
return $panel;
0 commit comments