1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-30 01:10:58 +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();
$list = $this->buildInstalledApplicationsList($applications);
$title = pht('Installed Applications');
$header = id(new PhabricatorHeaderView())
->setHeader($title);
$nav->appendChild(
array(
$header,
$list
));
$nav->appendChild($list);
$crumbs = $this
->buildApplicationCrumbs()
@ -39,6 +30,7 @@ final class PhabricatorApplicationsListController
array(
'title' => $title,
'device' => true,
'dust' => true,
));
}