Add basic fields back to Manage pages

Summary: It feels wierd to edit a project or profile and not see the changes. For now add them back to the Manage page.

Test Plan: Edit a Profile, Edit a Project. See updates on Manage page.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15140
This commit is contained in:
Chad Little
2016-01-29 11:48:39 -08:00
parent 27e21b0107
commit b8139e6946
2 changed files with 12 additions and 0 deletions

View File

@@ -132,6 +132,12 @@ final class PhabricatorProjectManageController
pht('Looks Like'),
$viewer->renderHandle($project->getPHID())->setAsTag(true));
$field_list = PhabricatorCustomField::getObjectFields(
$project,
PhabricatorCustomField::ROLE_VIEW);
$field_list->appendFieldsToPropertyList($project, $viewer, $view);
return $view;
}