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:
parent
4135ba48b0
commit
45ea88cec4
1 changed files with 11 additions and 8 deletions
|
@ -86,14 +86,17 @@ final class PhabricatorTypeaheadModularDatasourceController
|
|||
$table = new AphrontTableView($content);
|
||||
$table->setHeaders(
|
||||
array(
|
||||
'Name',
|
||||
'URI',
|
||||
'PHID',
|
||||
'Priority',
|
||||
'Display Name',
|
||||
'Display Type',
|
||||
'Image URI',
|
||||
'Priority Type',
|
||||
pht('Name'),
|
||||
pht('URI'),
|
||||
pht('PHID'),
|
||||
pht('Priority'),
|
||||
pht('Display Name'),
|
||||
pht('Display Type'),
|
||||
pht('Image URI'),
|
||||
pht('Priority Type'),
|
||||
pht('Icon'),
|
||||
pht('Closed'),
|
||||
pht('Sprite'),
|
||||
));
|
||||
|
||||
$result_box = id(new PHUIObjectBoxView())
|
||||
|
|
Loading…
Reference in a new issue