Skip to content

Commit c301b04

Browse files
committed
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
1 parent 73d006a commit c301b04

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/applications/meta/controller/PhabricatorApplicationsListController.php

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,8 @@ public function processRequest() {
1313
$applications = PhabricatorApplication::getAllApplications();
1414

1515
$list = $this->buildInstalledApplicationsList($applications);
16-
1716
$title = pht('Installed Applications');
18-
19-
$header = id(new PhabricatorHeaderView())
20-
->setHeader($title);
21-
22-
$nav->appendChild(
23-
array(
24-
$header,
25-
$list
26-
));
17+
$nav->appendChild($list);
2718

2819
$crumbs = $this
2920
->buildApplicationCrumbs()
@@ -39,6 +30,7 @@ public function processRequest() {
3930
array(
4031
'title' => $title,
4132
'device' => true,
33+
'dust' => true,
4234
));
4335
}
4436

0 commit comments

Comments
 (0)