mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Render Maniphest custom fields last
Summary: Ref T2217. Fixes T3865. Eventually we'll probably make more of this configurable, but for now shove custom fields down instead of sort of arbitrarily putting them in the middle. Test Plan: Looked at a task with attached revisions and custom fields, saw custom fields last. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2217, T3865 Differential Revision: https://secure.phabricator.com/D7103
This commit is contained in:
parent
6e29e809b4
commit
099aaa4f94
1 changed files with 5 additions and 5 deletions
|
@ -498,11 +498,6 @@ final class ManiphestTaskDetailController extends ManiphestController {
|
|||
? $this->renderHandlesForPHIDs($task->getProjectPHIDs(), ',')
|
||||
: phutil_tag('em', array(), pht('None')));
|
||||
|
||||
$field_list->appendFieldsToPropertyList(
|
||||
$task,
|
||||
$viewer,
|
||||
$view);
|
||||
|
||||
$edge_types = array(
|
||||
PhabricatorEdgeConfig::TYPE_TASK_DEPENDED_ON_BY_TASK
|
||||
=> pht('Dependent Tasks'),
|
||||
|
@ -576,6 +571,11 @@ final class ManiphestTaskDetailController extends ManiphestController {
|
|||
$file_view->render());
|
||||
}
|
||||
|
||||
$field_list->appendFieldsToPropertyList(
|
||||
$task,
|
||||
$viewer,
|
||||
$view);
|
||||
|
||||
$view->invokeWillRenderEvent();
|
||||
|
||||
if (strlen($task->getDescription())) {
|
||||
|
|
Loading…
Reference in a new issue