1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-04 11:51:02 +01:00

Add dust, remove header on Applications

Summary: Minor, for consistency

Test Plan: Tested Chrome and iOS

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5702
This commit is contained in:
Chad Little 2013-04-15 15:22:43 -07:00
parent 73d006a588
commit c301b049d8

View file

@ -13,17 +13,8 @@ final class PhabricatorApplicationsListController
$applications = PhabricatorApplication::getAllApplications(); $applications = PhabricatorApplication::getAllApplications();
$list = $this->buildInstalledApplicationsList($applications); $list = $this->buildInstalledApplicationsList($applications);
$title = pht('Installed Applications'); $title = pht('Installed Applications');
$nav->appendChild($list);
$header = id(new PhabricatorHeaderView())
->setHeader($title);
$nav->appendChild(
array(
$header,
$list
));
$crumbs = $this $crumbs = $this
->buildApplicationCrumbs() ->buildApplicationCrumbs()
@ -39,6 +30,7 @@ final class PhabricatorApplicationsListController
array( array(
'title' => $title, 'title' => $title,
'device' => true, 'device' => true,
'dust' => true,
)); ));
} }