1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 04:20:55 +01:00

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
This commit is contained in:
epriestley 2014-07-17 15:56:39 -07:00
parent 4135ba48b0
commit 45ea88cec4

View file

@ -86,14 +86,17 @@ final class PhabricatorTypeaheadModularDatasourceController
$table = new AphrontTableView($content); $table = new AphrontTableView($content);
$table->setHeaders( $table->setHeaders(
array( array(
'Name', pht('Name'),
'URI', pht('URI'),
'PHID', pht('PHID'),
'Priority', pht('Priority'),
'Display Name', pht('Display Name'),
'Display Type', pht('Display Type'),
'Image URI', pht('Image URI'),
'Priority Type', pht('Priority Type'),
pht('Icon'),
pht('Closed'),
pht('Sprite'),
)); ));
$result_box = id(new PHUIObjectBoxView()) $result_box = id(new PHUIObjectBoxView())