mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 14:00:56 +01:00
Show Projects bucket unconditionally in repository summary screen
Summary: fixes T4753 Test Plan: looked at repository with projects, looked at repository with no projects Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: chad, epriestley, Korvin Maniphest Tasks: T4753 Differential Revision: https://secure.phabricator.com/D8730
This commit is contained in:
parent
4d0935ba5e
commit
01552d85de
1 changed files with 6 additions and 3 deletions
|
@ -269,10 +269,13 @@ final class DiffusionRepositoryEditMainController
|
|||
PhabricatorEdgeConfig::TYPE_OBJECT_HAS_PROJECT);
|
||||
if ($project_phids) {
|
||||
$this->loadHandles($project_phids);
|
||||
$view->addProperty(
|
||||
pht('Projects'),
|
||||
$this->renderHandlesForPHIDs($project_phids));
|
||||
$project_text = $this->renderHandlesForPHIDs($project_phids);
|
||||
} else {
|
||||
$project_text = phutil_tag('em', array(), pht('None'));
|
||||
}
|
||||
$view->addProperty(
|
||||
pht('Projects'),
|
||||
$project_text);
|
||||
|
||||
$view->addProperty(
|
||||
pht('Status'),
|
||||
|
|
Loading…
Reference in a new issue