mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix an issue with "Assigned To" display in Maniphest
Summary: I inverted the logic. Test Plan: Will push Reviewers: tomo, aran CC: Differential Revision: 25
This commit is contained in:
parent
6ec5e682f4
commit
21058f9a08
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ class ManiphestTaskDetailController extends ManiphestController {
|
|||
'</strong>';
|
||||
|
||||
$dict['Assigned To'] = $task->getOwnerPHID()
|
||||
? '<em>None</em>'
|
||||
: $handles[$task->getOwnerPHID()]->renderLink();
|
||||
? $handles[$task->getOwnerPHID()]->renderLink()
|
||||
: '<em>None</em>';
|
||||
|
||||
$dict['Priority'] = ManiphestTaskPriority::getTaskPriorityName(
|
||||
$task->getPriority());
|
||||
|
|
Loading…
Reference in a new issue