mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 05:50:55 +01:00
Minor, fix some margins on the homepage directory view.
This commit is contained in:
parent
6aee862bbe
commit
97de022ae4
1 changed files with 4 additions and 4 deletions
|
@ -189,9 +189,6 @@ final class PhabricatorDirectoryMainController
|
||||||
->withResponsibleUsers(array($user_phid))
|
->withResponsibleUsers(array($user_phid))
|
||||||
->needRelationships(true);
|
->needRelationships(true);
|
||||||
|
|
||||||
// NOTE: We need to unlimit this query to hit the responsible user
|
|
||||||
// fast-path.
|
|
||||||
$revision_query->setLimit(null);
|
|
||||||
$revisions = $revision_query->execute();
|
$revisions = $revision_query->execute();
|
||||||
|
|
||||||
list($blocking, $active, ) = DifferentialRevisionQuery::splitResponsible(
|
list($blocking, $active, ) = DifferentialRevisionQuery::splitResponsible(
|
||||||
|
@ -230,7 +227,10 @@ final class PhabricatorDirectoryMainController
|
||||||
|
|
||||||
$revision_view->setHandles($handles);
|
$revision_view->setHandles($handles);
|
||||||
|
|
||||||
$panel->appendChild($revision_view);
|
$list_view = $revision_view->render();
|
||||||
|
$list_view->setFlush(true);
|
||||||
|
|
||||||
|
$panel->appendChild($list_view);
|
||||||
$panel->setNoBackground();
|
$panel->setNoBackground();
|
||||||
|
|
||||||
return $panel;
|
return $panel;
|
||||||
|
|
Loading…
Reference in a new issue