mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix double nav on Maniphest reports
Summary: Fixes T2311. Test Plan: {F33161} Reviewers: chad Reviewed By: chad CC: aran Maniphest Tasks: T2311 Differential Revision: https://secure.phabricator.com/D5005
This commit is contained in:
parent
61c26463bc
commit
50efcf1043
1 changed files with 7 additions and 3 deletions
|
@ -57,12 +57,16 @@ final class ManiphestReportController extends ManiphestController {
|
|||
}
|
||||
|
||||
$nav->appendChild($core);
|
||||
$base_nav->appendChild($nav);
|
||||
$nav->setCrumbs(
|
||||
$this->buildApplicationCrumbs()
|
||||
->addCrumb(
|
||||
id(new PhabricatorCrumbView())
|
||||
->setName(pht('Reports'))));
|
||||
|
||||
return $this->buildStandardPageResponse(
|
||||
$base_nav,
|
||||
$nav,
|
||||
array(
|
||||
'title' => 'Maniphest Reports',
|
||||
'title' => pht('Maniphest Reports'),
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue