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

Add more columns to typeahead wire format debugging view

Summary: Fixes T4420. This isn't perfect but is one step less janky, at least.

Test Plan: Viewed debugging view at `/typeahead/class/`, no unlabeled columns.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T4420

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

+11 -8
+11 -8
src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php
··· 86 86 $table = new AphrontTableView($content); 87 87 $table->setHeaders( 88 88 array( 89 - 'Name', 90 - 'URI', 91 - 'PHID', 92 - 'Priority', 93 - 'Display Name', 94 - 'Display Type', 95 - 'Image URI', 96 - 'Priority Type', 89 + pht('Name'), 90 + pht('URI'), 91 + pht('PHID'), 92 + pht('Priority'), 93 + pht('Display Name'), 94 + pht('Display Type'), 95 + pht('Image URI'), 96 + pht('Priority Type'), 97 + pht('Icon'), 98 + pht('Closed'), 99 + pht('Sprite'), 97 100 )); 98 101 99 102 $result_box = id(new PHUIObjectBoxView())