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

Force typeahead datasource response into expected array format

Ref T4100. Without this, we sometimes get a sparse array from composite sources and the client isn't sure what to do with it.

+1
+1
src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php
··· 238 238 } 239 239 240 240 $content = mpull($results, 'getWireFormat'); 241 + $content = array_values($content); 241 242 242 243 if ($request->isAjax()) { 243 244 return id(new AphrontAjaxResponse())->setContent($content);