@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor, fix some margins on the homepage directory view.

+4 -4
+4 -4
src/applications/directory/controller/PhabricatorDirectoryMainController.php
··· 189 189 ->withResponsibleUsers(array($user_phid)) 190 190 ->needRelationships(true); 191 191 192 - // NOTE: We need to unlimit this query to hit the responsible user 193 - // fast-path. 194 - $revision_query->setLimit(null); 195 192 $revisions = $revision_query->execute(); 196 193 197 194 list($blocking, $active, ) = DifferentialRevisionQuery::splitResponsible( ··· 230 227 231 228 $revision_view->setHandles($handles); 232 229 233 - $panel->appendChild($revision_view); 230 + $list_view = $revision_view->render(); 231 + $list_view->setFlush(true); 232 + 233 + $panel->appendChild($list_view); 234 234 $panel->setNoBackground(); 235 235 236 236 return $panel;