@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.

[Redesign] Fix People Log Query

Summary: Fixes T8642, This is a table, but not returned as one. Set it to Content for now with a Collapsed layout.

Test Plan: Test /people/logs/

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8642

Differential Revision: https://secure.phabricator.com/D13395

+5 -1
+2 -1
src/applications/people/query/PhabricatorPeopleLogSearchEngine.php
··· 187 187 } 188 188 189 189 $result = new PhabricatorApplicationSearchResultView(); 190 - $result->setTable($table); 190 + $result->setContent($table); 191 + $result->setCollapsed(true); 191 192 192 193 return $result; 193 194 }
+3
src/applications/search/controller/PhabricatorApplicationSearchController.php
··· 249 249 if ($list->getContent()) { 250 250 $box->appendChild($list->getContent()); 251 251 } 252 + if ($list->getCollapsed()) { 253 + $box->setCollapsed(true); 254 + } 252 255 253 256 if ($pager->willShowPagingControls()) { 254 257 $pager_box = id(new PHUIBoxView())